MatrixMathToMatrixFromLeftSpineJaggedArrayT Method |
This wraps a jagged double array to the
IMatrixT interface. The data is not copied!
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IBottomExtensibleMatrix<T> ToMatrixFromLeftSpineJaggedArray<T>(
T[][] x
)
where T : struct, new()
Parameters
- x T
- The jagged array. Each double[] vector is a row of the matrix.
Type Parameters
- T
- The element type of the matrix.
Return Value
IBottomExtensibleMatrixTA writable matrix wrapper over
x that exposes the rows through `IBottomExtensibleMatrix{T}`.
See Also