Sorting, searching, and counting#
Sorting#
|
Perform an indirect partition along the given axis. |
|
Returns the indices that would sort an array. |
|
Returns a sorted copy of an array sorted along the first axis. |
|
Returns a partitioned copy of an array. |
|
Returns a sorted copy of an array. |
|
Returns a sorted copy of an array sorted along the last axis. |
Searching#
|
Returns the indices of the maximum values along an axis. |
|
Returns the indices of the minimum values along an axis. |
|
Find the indices of array elements that are non-zero, grouped by element. |
|
Return indices that are non-zero in the flattened version of a. |
|
Return the indices of the maximum values in the specified axis ignoring NaNs. |
|
Return the indices of the minimum values in the specified axis ignoring NaNs. |
|
Return the indices of the elements that are non-zero. |
|
Find the indices into a sorted array a such that, if the corresponding elements in v were inserted before the indices, the order of a would be preserved. |
|
Return the elements of an array that satisfy some condition. |
|
where(condition, [x, y]) |
Counting#
|
Counts the number of non-zero values in the array |