ILNumerics Ultimate VS

ExtensionMethodsravelT1 Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development

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

public static RetArray<T1> ravel<T1>(
	this BaseArray<T1> A,
	StorageOrders order = StorageOrders.RowMajor
)

Parameters

A
Type: ILNumericsBaseArrayT1
The input array.
order (Optional)
Type: ILNumericsStorageOrders
[Optional] The storage order of the array returned. Default: row major.

Type Parameters

T1

Return Value

Type: RetArrayT1
A 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 BaseArrayT1. 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

Reference