Click or drag to resize

MatrixMathToMatrixT(MatrixWrapperStructForColumnMajorOrderLinearArrayT) Method

Wraps a linear array (column major order) into a read-write matrix. The array is packed in column major order, i.e. the first elements belong to the first column of the matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IROMatrix<T> ToMatrix<T>(
	MatrixWrapperStructForColumnMajorOrderLinearArray<T> wrapper
)
where T : struct, new()

Parameters

wrapper  MatrixWrapperStructForColumnMajorOrderLinearArrayT
Wrapper around a linear array in column major order, which provides number of rows and columns.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.ToMatrix``1(Altaxo.Calc.LinearAlgebra.MatrixWrapperStructForColumnMajorOrderLinearArray{``0})"]

Return Value

IROMatrixT
The read-only matrix wrappage of the linear array.
See Also