Numpy-Funktionsenzyklopädie: Detaillierte Erläuterung aller Funktionen und ihrer Verwendung in der Numpy-Bibliothek, spezifische Codebeispiele sind erforderlich
Einführung:
In den Bereichen Datenanalyse und wissenschaftliches Rechnen müssen häufig umfangreiche numerische Daten erfasst werden verarbeitet. Numpy ist die am häufigsten verwendete Open-Source-Bibliothek in Python und bietet effiziente mehrdimensionale Array-Objekte und eine Reihe von Funktionen zum Betreiben von Arrays. In diesem Artikel werden alle Funktionen und ihre Verwendung in der Numpy-Bibliothek detailliert vorgestellt und spezifische Codebeispiele gegeben, um den Lesern zu helfen, die Numpy-Bibliothek besser zu verstehen und zu verwenden.
import numpy as np arr = np.array([1, 2, 3, 4, 5]) print(arr)
Das Ausgabeergebnis ist:
[1 2 3 4 5]
import numpy as np arr = np.arange(0, 10, 2) print(arr)
Das Ausgabeergebnis ist:
[0 2 4 6 8]
import numpy as np arr = np.zeros((2, 3)) print(arr)
Das Ausgabeergebnis ist:
[[0. 0. 0.] [0. 0. 0.]]
import numpy as np arr = np.ones((2, 3)) print(arr)
Das Ausgabeergebnis ist:
[[1. 1. 1.] [1. 1. 1.]]
import numpy as np arr = np.linspace(0,1,5) print(arr)
Das Ausgabeergebnis ist:
[0. 0.25 0.5 0.75 1. ]
import numpy as np arr = np.eye(3) print(arr)
Das Ausgabeergebnis ist:
[[1. 0. 0.] [0. 1. 0.] [0. 0. 1.]]
import numpy as np arr = np.arange(1, 10) arr_reshape = np.reshape(arr, (3, 3)) print(arr_reshape)
Das Ausgabeergebnis ist:
[[1 2 3] [4 5 6] [7 8 9]]
import numpy as np arr = np.array([[1, 2, 3], [4, 5, 6]]) arr_flatten = arr.flatten() print(arr_flatten)
Das Ausgabeergebnis ist:
[1 2 3 4 5 6]
import numpy as np arr = np.array([3, 1, 5, 2, 4]) arr_sorted = np.sort(arr) print(arr_sorted)
Das Ausgabeergebnis ist:
[1 2 3 4 5]
import numpy as np arr = np.array([3, 1, 5, 2, 4]) max_index = np.argmax(arr) print(max_index)
Das Ausgabeergebnis ist:
2
import numpy as np arr1 = np.array([1, 2, 3]) arr2 = np.array([4, 5, 6]) result = np.add(arr1, arr2) print(result)
Das Ausgabeergebnis ist:
[5 7 9]
import numpy as np arr1 = np.array([1, 2, 3]) arr2 = np.array([4, 5, 6]) result = np.dot(arr1, arr2) print(result)
Das Ausgabeergebnis ist:
32
import numpy as np arr = np.array([1, 2, 3, 4, 5]) mean = np.mean(arr) print(mean)
Das Ausgabeergebnis ist:
3.0
import numpy as np arr = np.array([1, 2, 3, 4, 5]) std = np.std(arr) print(std)
Das Ausgabeergebnis ist:
1.4142135623730951
import numpy as np matrix = np.array([[1, 2], [3, 4]]) det = np.linalg.det(matrix) print(det)
Das Ausgabeergebnis ist:
-2.0000000000000004
import numpy as np matrix = np.array([[1, 2], [3, 4]]) inv = np.linalg.inv(matrix) print(inv)
Das Ausgabeergebnis ist:
[[-2. 1. ] [ 1.5 -0.5]]
import numpy as np arr = np.loadtxt('data.txt') print(arr)
import numpy as np arr = np.array([1, 2, 3, 4, 5]) np.savetxt('data.txt', arr)
import numpy as np arr = np.array([0, np.pi / 2, np.pi]) sin_val = np.sin(arr) print(sin_val)
Das Ausgabeergebnis ist:
[0. 1. 1.2246468e-16]
import numpy as np arr = np.array([1, 2, 3]) exp_val = np.exp(arr) print(exp_val)
Das Ausgabeergebnis ist:
[ 2.71828183 7.3890561 20.08553692]
Dieser Artikel zeigt nur einen kleinen Teil der Funktionen in der Numpy-Bibliothek, die über leistungsfähigere Funktionen verfügt. Ich hoffe, dass die Leser die Funktionen der Numpy-Bibliothek in der tatsächlichen Programmierung flexibel nutzen können, um die Effizienz und Genauigkeit der Datenverarbeitung zu verbessern.
Das obige ist der detaillierte Inhalt vonVollständige Liste der Numpy-Funktionen und ihrer Verwendung: Detaillierte Erklärung aller Funktionen in der Numpy-Bibliothek. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!