DenseColumnMajorMatrixStorageTOfValue Method |
Creates a dense column-major matrix storage initialized with a constant value.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static DenseColumnMajorMatrixStorage<T> OfValue(
int rows,
int columns,
T value
)
Parameters
- rows Int32
- The number of rows.
- columns Int32
- The number of columns.
- value T
- The constant value to initialize the matrix with.
Return Value
DenseColumnMajorMatrixStorageTThe initialized dense matrix storage.
See Also