ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Reshaped array.
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
Parameters
- size
- Type: SystemInt64
Size for the new array, can be provided as individual literals.
Return Value
Type: RetTReshaped array.
Exceptions
Exception | Condition |
---|---|
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