Click or drag to resize

MatValueObjectArray Constructor

Represents a MATLAB object array.

Namespace: Altaxo.Serialization.Matlab
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public ObjectArray(
	string ClassName,
	IReadOnlyDictionary<string, MatValue[]> Fields,
	ReadOnlyMemory<int> Dimensions,
	bool IsColumnMajor = true
)

Parameters

ClassName  String
The MATLAB class name of the object array.
Fields  IReadOnlyDictionaryString, MatValue
The field data keyed by field name.
Dimensions  ReadOnlyMemoryInt32
The dimensions of the object array.
IsColumnMajor  Boolean  (Optional)
A value indicating whether the element order follows MATLAB column-major layout.
See Also