ILNumerics Ultimate VS

ArrayStreamSerializationFlags Enumeration

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Defines the way Arrays are serialized to stream.

[ILNumerics Core Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public enum ArrayStreamSerializationFlags
Members

  Member nameValueDescription
Serial0 Print values 'vectorized': one value after each other. The true dimension configuration of the array will be lost in the result.
Formatted1 Print values 'matrixwise'. The real dimensions configuration for the array are kept in the result. The array will be printed by pages, consisting out of the 1st and 2nd leading dimnsion. A dimension tag will prefix each page. The format can be used as fancier output version for human reading as well as human readable serialization format. Array's are capable of constructing from streams containing this type of output.
Matlab2 Export whole array instance to matlab 5.0 format
Remarks

[ILNumerics Core Module]

See Also

Reference