ILNumerics - Technical Application Development
Assembly: ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
[numpy API] Computes the indices for elements of sorted A.
[ILNumerics numpy Module]
Namespace: ILNumerics
Assembly: ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<long> argsort( this ConcreteArray<int, Array<int>, InArray<int>, OutArray<int>, RetArray<int>, Storage<int>> A, int axis = -1, bool descending = false, OutArray<int> sorted = null )
Parameters
- A
- Type: ILNumerics.Core.ArraysConcreteArrayInt32, ArrayInt32, InArrayInt32, OutArrayInt32, RetArrayInt32, StorageInt32
Array to compute the indices for. This is not altered. - 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. - sorted (Optional)
- Type: ILNumericsOutArrayInt32
[Optional] Returns the sorted values of A also. Default: (null) sorted values are not returned.
Return Value
Type: RetArrayInt64Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ConcreteArrayInt32, ArrayInt32, InArrayInt32, OutArrayInt32, RetArrayInt32, StorageInt32. 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(BaseArrayInt32, Int32, Boolean) for details.
This function internally creates a copy of A. Therefore, the sorted values can be returned without significant overhead.
[ILNumerics numpy Module]
See Also
Reference
MathInternal.sort(BaseArrayInt32, Int32, Boolean)
MathInternal.sort(BaseArrayInt32, OutArrayInt64, Int32, Boolean)