Click or drag to resize

MatValueNumericArray Constructor

Represents an n-dimensional numeric array.

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

Parameters

Data  ReadOnlyMemoryDouble
The numeric values of the array.
Dimensions  ReadOnlyMemoryInt32
The dimensions of the array.
IsColumnMajor  Boolean  (Optional)
A value indicating whether the array data is stored in column-major order.
See Also