ILNumerics Ultimate VS

BaseArrayToString Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
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: String
String with the content of this array converted according to the given parameters.
Remarks

[ILNumerics Core Module]

See Also

Reference