numpy.msort — NumPy v1.13 Manual (original) (raw)
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. |
See also
Notes
np.msort(a) is equivalent to np.sort(a, axis=0).