Click or drag to resize

MatValueMatrix Constructor

Represents a 2D double matrix.

Namespace: Altaxo.Serialization.Matlab
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public Matrix(
	int RowCount,
	int ColumnCount,
	ReadOnlyMemory<double> Data,
	bool IsColumnMajor = true
)

Parameters

RowCount  Int32
The number of rows in the matrix.
ColumnCount  Int32
The number of columns in the matrix.
Data  ReadOnlyMemoryDouble
The matrix elements stored in a contiguous memory block.
IsColumnMajor  Boolean  (Optional)
A value indicating whether the matrix data is stored in column-major order.
See Also