Table of Contents
numpy.doc
numpy.lib
numpy.random
numpy.linalg
numpy.fft
numpy.polynomial
numpy.testing
numpy.f2py
numpy.distutils
ufunc
numpy.ctypeslib
numpy.dual
numpy.emath
numpy.matlib
numpy.
msort
Return a copy of an array sorted along the first axis.
a : array_like
Array to be sorted.
sorted_array : ndarray
Array of the same type and shape as a.
See also
sort
Notes
np.msort(a) is equivalent to np.sort(a, axis=0).
np.msort(a)
np.sort(a, axis=0)