This is documentation for an old release of NumPy (version 1.3.). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.msort
-
numpy.msort(a)
Return a copy of an array sorted along the first axis.
Parameters: | a : array_like
Array to be sorted.
|
Returns: | sorted_array : ndarray
Array of the same type and shape as a.
|
Notes
np.msort(a) is equivalent to np.sort(a, axis=0).