Sorting
(a[, axis, kind, order, stable, descending])
Return a sorted copy of an array.
(keys[, axis])
Perform an indirect stable sort using a sequence of keys.
(a[, axis, kind, order, stable, ...])
Returns the indices that would sort an array.
([axis, kind, order, stable, ...])
Sort an array in-place.
(a)
Sort a complex array using the real part first, then the imaginary part.
(a, kth[, axis, kind, order, ...])
Return a partitioned copy of an array.
(a, kth[, axis, kind, order, ...])
Perform an indirect partition along the given axis using the algorithm specified by the kind keyword.
(a, k, /, *[, axis, mode, sorted])
Returns the k largest or smallest elements and their indices along an axis.
Searching
(a[, axis, out, keepdims])
Returns the indices of the maximum values along an axis.
(a[, axis, out, keepdims])
Return the indices of the maximum values in the specified axis ignoring NaNs.
(a[, axis, out, keepdims])
Returns the indices of the minimum values along an axis.
(a[, axis, out, keepdims])
Return the indices of the minimum values in the specified axis ignoring NaNs.
(a)
Find the indices of array elements that are non-zero, grouped by element.
(a)
Return the indices of the elements that are non-zero.
(a)
Return indices that are non-zero in the flattened version of a.
(condition, [x, y], /)
Return elements chosen from x or y depending on condition.
(a, v[, side, sorter])
Find indices where elements should be inserted to maintain order.
(condition, arr)
Return the elements of an array that satisfy some condition.
Counting