Click or drag to resize

FloatComplexLowerTriMatrix(FloatComplexVector) Constructor

Constructs a square FloatComplexLowerTriMatrix instance using the data in the given vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexLowerTriMatrix(
	FloatComplexVector data
)

Parameters

data  FloatComplexVector
The matrix data.
Exceptions
ExceptionCondition
MatrixNotSquareException Thrown if the given vector has a length that cannot be made into a square triangular matrix.
Remarks
The data vector must be formatted as described in the class summary, and must have a length that can be made into a square triangular matrix. The resultant matrix references the same data as the vector.
See Also