CreateMatrixDenseT(DenseColumnMajorMatrixStorageT) Method |
Create a new dense matrix straight from an initialized matrix storage instance.
The storage is used directly without copying.
Intended for advanced scenarios where you're working directly with
storage for performance or interop reasons.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static Matrix<T> Dense<T>(
DenseColumnMajorMatrixStorage<T> storage
)
where T : struct, new(), IEquatable<T>, IFormattable
Parameters
- storage DenseColumnMajorMatrixStorageT
- The storage.
Type Parameters
- T
- The element type of the matrix to create.
Return Value
MatrixTA dense matrix using the provided storage.
See Also