Sorting functions

argsort(x[, axis, descending, stable])

Returns the indices that sort an array x along a specified axis.

sort(x[, axis, descending, stable])

Returns a sorted copy of an input array x.

top_k(x, k[, axis, mode])

Returns the k largest or smallest values and their indices in the input array x along the specified axis axis.