ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
String with the content of this array converted according to the given parameters.
Creates a textual representation of a derived array and allows to control display parameters.
[ILNumerics Core Module]
Namespace: ILNumerics
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public virtual string ToString( uint maxNumberElementsPerDimension = 50, uint maxNumberElements = 10000, Nullable<StorageOrders> style = null, bool showType = true, bool showSize = true, Nullable<int> columnWidth = null )
Parameters
- maxNumberElementsPerDimension (Optional)
- Type: SystemUInt32
[Optional] Maximum number of elements displayed in each dimension. Default: 50. Use 0 to remove this limit. - maxNumberElements (Optional)
- Type: SystemUInt32
[Optional] Overall maximum number of elements displayed. Default: 1000. Use 0 to remove this limit. - style (Optional)
- Type: SystemNullableStorageOrders
[Optional] Show the elements in row major or column major order. Default: DefaultStorageOrder (i.e.: currently selected ArrayStyle). - showType (Optional)
- Type: SystemBoolean
[Optional] Add a header info with the element type. Default: true. - showSize (Optional)
- Type: SystemBoolean
[Optional] Add a header info with the arrays size. Default: true. - columnWidth (Optional)
- Type: SystemNullableInt32
[Optional] Controls the width of element columns (number of characters). Default: (auto, depends on type).
Return Value
Type: StringString with the content of this array converted according to the given parameters.
Remarks
[ILNumerics Core Module]
See Also