ILNumerics Ultimate VS

ConcreteArrayT1, LocalT, InT, OutT, RetT, StorageTReshape Method (Int64)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Creates reshaped version of this array, accepts variable length arguments array.

[ILNumerics Core Module]

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

public RetT Reshape(
	params long[] size
)

Parameters

size
Type: SystemInt64
Size for the new array, can be provided as individual literals.

Return Value

Type: RetT
Reshaped array.
Exceptions

ExceptionCondition
ArgumentException if size is null or longer than the maximum number of dimensions supported: MaxNumberOfDimensions.
Remarks

This function is provided for such situations where the size / shape of the target array is computed automatically. Here, it is convenient to provide the dimension lengths as a single array parameter.

Also, a variable number of number literals are accepted ('params' argument list, C#).

The same limitations exist as for the overloads with individual dimension parameters.

[ILNumerics Core Module]

See Also

Reference