DenseColumnMajorMatrixStorageTOfRowMajorArray Method |
Creates a dense column-major matrix storage from a row-major array.
Namespace: Altaxo.Calc.LinearAlgebra.StorageAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static DenseColumnMajorMatrixStorage<T> OfRowMajorArray(
int rows,
int columns,
T[] data
)
Parameters
- rows Int32
- The number of rows.
- columns Int32
- The number of columns.
- data T
- The source data.
Return Value
DenseColumnMajorMatrixStorageTThe initialized dense matrix storage.
See Also