Click or drag to resize

DenseColumnMajorMatrixStorageTOfRowEnumerables Method

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

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> OfRowEnumerables(
	int rows,
	int columns,
	IEnumerable<IEnumerable<T>> data
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
data  IEnumerableIEnumerableT
The source data, given as an enumerable of row enumerables.

Return Value

DenseColumnMajorMatrixStorageT
The initialized dense matrix storage.
See Also