Click or drag to resize

MatrixMathToMatrixFromTopSpineJaggedArrayT Method

Constructs an RE matrix from an array of double vectors. Attention! The double vectors (the second) dimensions are here the columns (!) of the matrix. The data is not copied.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IRightExtensibleMatrix<T> ToMatrixFromTopSpineJaggedArray<T>(
	T[][] x
)
where T : struct, new()

Parameters

x  T
Array of columns (!) of the matrix.

Type Parameters

T
The element type of the matrix.

Return Value

IRightExtensibleMatrixT
A matrix wrapper around the jagged array.
See Also