ILNumerics Ultimate VS

ExtensionMethodssort Method (MutableUInt32, ArrayUInt32, InArrayUInt32, OutArrayUInt32, RetArrayUInt32, StorageUInt32, Int32, Boolean)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
[numpy API] Sort elements of A inplace.

[ILNumerics numpy Module]

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

public static void sort(
	this Mutable<uint, Array<uint>, InArray<uint>, OutArray<uint>, RetArray<uint>, Storage<uint>> A,
	int axis = -1,
	bool descending = false
)

Parameters

A
Type: ILNumerics.Core.ArraysMutableUInt32, ArrayUInt32, InArrayUInt32, OutArrayUInt32, RetArrayUInt32, StorageUInt32
Array to get sorted.
axis (Optional)
Type: SystemInt32
[Optional] The working dimension. Default: (-1) sorts the last dimension.
descending (Optional)
Type: SystemBoolean
[Optional] Sort in descending order. Default: (false) sort in ascending order.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type MutableUInt32, ArrayUInt32, InArrayUInt32, OutArrayUInt32, RetArrayUInt32, StorageUInt32. 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

The sort is performed in parallel, using the quicksort algorithm.

See sort(BaseArrayUInt32, Int32, Boolean) for details.

This function works on the elements of A directly. No copy will be made. Therefore, it is only available for mutable arrays.

[ILNumerics numpy Module]

See Also

Reference

MathInternal.sort(BaseArrayUInt32, Int32, Boolean)