Matrix Constructor (Int32, Int32, Double)
|
Creates a matrix from one dimensional array.
Namespace:
FinMath.LinearAlgebra
Assembly:
FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax public Matrix(
int rows,
int columns,
double[] values
)
Parameters
- rows
- Type: SystemInt32
Number of rows in matrix to create. - columns
- Type: SystemInt32
Number of columns in matrix to create. - values
- Type: SystemDouble
The array to create the matrix from.
See Also