Click or drag to resize

MatrixMathMatrixFromRowMajorLinearArrayT(T, Int32) Constructor

Initializes a new instance of the MatrixMathMatrixFromRowMajorLinearArrayT class.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public MatrixFromRowMajorLinearArray(
	T[] array,
	int nRows
)

Parameters

array  T
The linear array in row-major order.
nRows  Int32
The number of rows of the matrix. The number of columns are calculated from the length of the array and the number of rows.
Exceptions
ExceptionCondition
ArgumentExceptionThrown when the array length is not an integer multiple of nRows.
See Also