Click or drag to resize

MatFileV5WriterWriteMatrixDouble Method

Writes a double matrix with column-major data layout.

Namespace: Altaxo.Serialization.Matlab
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void WriteMatrixDouble(
	string name,
	int rows,
	int cols,
	ReadOnlySpan<double> dataColumnMajor
)

Parameters

name  String
Variable name.
rows  Int32
Row count.
cols  Int32
Column count.
dataColumnMajor  ReadOnlySpanDouble
Matrix data in MATLAB column-major order.
See Also