 | FloatComplexTriDiagMatrix Constructor (FloatComplexVector, Int32, Int32) |
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
Syntaxpublic FloatComplexTriDiagMatrix(
FloatComplexVector data,
int rows,
int cols
)
Public Sub New (
data As FloatComplexVector,
rows As Integer,
cols As Integer
)
public:
FloatComplexTriDiagMatrix(
FloatComplexVector^ data,
int rows,
int cols
)
new :
data : FloatComplexVector *
rows : int *
cols : int -> FloatComplexTriDiagMatrix
Parameters
- data
- Type: CenterSpace.NMath.CoreFloatComplexVector
The matrix data. - rows
- Type: SystemInt32
The number of rows in the matrix. - cols
- Type: SystemInt32
The number of colums in the matrix.
ExceptionsException | Condition |
---|
InvalidArgumentException | Thrown 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