ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Reshaped array.
A reshaped version of A.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<T> reshape<T>( BaseArray<T> A, InArray<long> newdims, Nullable<StorageOrders> order = null )
Parameters
- A
- Type: ILNumericsBaseArrayT
Input array. - newdims
- Type: ILNumericsInArrayInt64
New dimension lengths. - order (Optional)
- Type: SystemNullableStorageOrders
[Optional] Storage order for the output array. Default: null (Settings.DefaultStorageOrder).
Type Parameters
- T
Return Value
Type: RetArrayTReshaped array.
Remarks
The storage order for both: the order for reading the elements from A and storing the element into the reshaped array is determined as follows:
If order is specified (ColumnMajor or RowMajor) its value is used for the output. A copy is made only if really needed.Otherwise, the value of DefaultStorageOrder determins the target storage order.A copy of the elements is required for non-continous arrays and - except for vector shaped arrays - for unmatching order settings. Otherwise the returned array references the same memory as this array and uses another size descriptor only.
[ILNumerics Computing Engine]
See Also