Click or drag to resize

FloatComplexTriDiagMatrix(FloatComplexVector, Int32, Int32) Constructor

Constructs a FloatComplexTriDiagMatrix instance with the specified dimensions using the data in the given vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexTriDiagMatrix(
	FloatComplexVector data,
	int rows,
	int cols
)

Parameters

data  FloatComplexVector
The matrix data.
rows  Int32
The number of rows in the matrix.
cols  Int32
The number of colums in the matrix.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the number of rows is less than 3 or the data vector has length less than 3 * cols
Remarks
The data in the vector must in the format described in the class summary. The resultant matrix references the data in the vector
See Also