“Inverse Matrize Python” Code-Antworten

Inverse Matrix Python

import numpy as np

# X is the matrix to invert
X_inverted = numpy.linalg.inv(X)
Four Horned Antelope

Inverse Matrize Python

>>> import numpy as np
>>> A = np.array(([1,3,3],[1,4,3],[1,3,4]))
>>> A
array([[1, 3, 3],
       [1, 4, 3],
       [1, 3, 4]])
>>> A_inv = np.linalg.inv(A)
>>> A_inv
array([[ 7., -3., -3.],
       [-1.,  1.,  0.],
       [-1.,  0.,  1.]])
Annoying Antelope

Ähnliche Antworten wie “Inverse Matrize Python”

Fragen ähnlich wie “Inverse Matrize Python”

Weitere verwandte Antworten zu “Inverse Matrize Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen