Constructs a square FloatComplexUpperTriMatrix instance by extracting the upper triangular part of a square general matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatComplexUpperTriMatrix(
	FloatComplexMatrix A
)
Visual Basic (Declaration)
Public Sub New ( _
	A As FloatComplexMatrix _
)
Visual C++
public:
FloatComplexUpperTriMatrix(
	FloatComplexMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A square general matrix.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MatrixNotSquareException Thrown if the given matrix is not square.

See Also