“Sortieren Sie Array Numpy” Code-Antworten

Numpy Sort

>>> a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])
Creepy Cormorant

Numpy Array -Sortierung

a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])
Fragile Fish

Sortieren Sie Array Numpy


arr = np.array([2, 1, 5, 3, 7, 4, 6, 8])
np.sort(arr)
BlueMoon

Ähnliche Antworten wie “Sortieren Sie Array Numpy”

Fragen ähnlich wie “Sortieren Sie Array Numpy”

Weitere verwandte Antworten zu “Sortieren Sie Array Numpy” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen