[PYTHON] NumPy-Achse

So berechnen Sie ein ndarray-Array durch Angabe der Achse Berechnen Sie in Spaltenrichtung mit 0 Berechnen Sie in Zeilenrichtung mit 1

python


import numpy as np

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

print(arr.sum())
print(arr.sum(axis=0))
print(arr.sum(axis=1))

python


>>>Ausgabeergebnis
21
[5 7 9]
[ 6 15]

Recommended Posts

NumPy-Achse
Achsenspezifikation mit NumPy
Numpy-Übung 1
Numpy [Basic]
numpy Teil 1
NumPy-Grundlagen
Numpy Memorandum _ Matrix
Über Achse = 0, Achse = 1
numpy tipps
Über Numpy
Verwenden Sie Numpy
numpy Teil 2
Mein Numpy (Python)
wo von numpy
Numpy Unit Test
Liste und Numpy
NumPy Universalfunktion
numpy memorandum 1 / np.pad
Verstehe die Achse der Numpy
# Python-Grundlagen (#Numpy 1/2)
# Python-Grundlagen (#Numpy 2/2)
Numpy-Index-Suche
NumPy-Array-Operation (1)
[Numpy] Shuffle ndarray
Python #Numpy Basics
Numpys nicht-grundlegende Technik
Über Numpy Broadcast
[PyTorch] Beispiel ① ~ NUMPY ~
Numpy + Atlas installieren
[Python] Numpy Memo