ILNumerics - Technical Application Development
Assembly: ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
A new array having the same element number and -type as A flattened to a vector.
[numpy API] Returns a flattened copy of the source array. This is the same as ravelT1(BaseArrayT1, StorageOrders). See remarks for details.
[ILNumerics numpy Module]
Namespace: ILNumerics
Assembly: ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetLogical flatten( this BaseArray<bool> A, StorageOrders order = StorageOrders.RowMajor )
Parameters
- A
- Type: ILNumericsBaseArrayBoolean
The source array. - order (Optional)
- Type: ILNumericsStorageOrders
[Optional] The storage order of the array returned. Default: row major.
Return Value
Type: RetLogicalA new array having the same element number and -type as A flattened to a vector.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type BaseArrayBoolean. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Remarks
This is the same as 'A.Reshape(-1,order)'. Note that in ILNumerics all arrays semantically behave like copies.
[ILNumerics numpy Module]
See Also