Defines the way ILArrays are serialized to stream. Used by function ToStream.
| C# | Visual Basic | Visual C++ |
public enum ILArrayStreamSerializationFlags
Public Enumeration ILArrayStreamSerializationFlags
public enum class ILArrayStreamSerializationFlags
| Member | Description |
|---|---|
| Serial |
print values 'vectorized': one value after each other. The true dimension configuration
of the array will be lost in the result.
|
| Formatted |
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. ILArray's are capable of constructing from streams containing this type of
output.
|
| Matlab |
export whole array instance to matlab 5.0 format
|