MatValueMatrix Constructor |
Represents a 2D double matrix.
Namespace: Altaxo.Serialization.MatlabAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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