ILNumerics Ultimate VS

ExtensionMethodsflatten Method (BaseArrayBoolean, StorageOrders)

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 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: RetLogical
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 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

Reference