Click or drag to resize

CreateMatrixDenseT(Int32, Int32, T) Method

Create a new dense matrix with the given number of rows and columns directly binding to a raw array. The array is assumed to be in column-major order (column by column) and is used directly without copying. Very efficient, but changes to the array and the matrix will affect each other.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Matrix<T> Dense<T>(
	int rows,
	int columns,
	T[] storage
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
storage  T
The storage array.

Type Parameters

T
The element type of the matrix to create.

Return Value

MatrixT
A new dense matrix.
See Also