Click or drag to resize

DenseColumnMajorMatrixStorageTOfRowArrays Method

Creates a dense column-major matrix storage from row arrays.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static DenseColumnMajorMatrixStorage<T> OfRowArrays(
	T[][] data
)

Parameters

data  T
The source data, given as an array of row arrays.

Return Value

DenseColumnMajorMatrixStorageT
The initialized dense matrix storage.
See Also