“Matrice inverse Python Numpy” Réponses codées

Matrice inverse Python

import numpy as np

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

Matrice inverse Numpy

#You can either use the included inv fucntion
M_inverse = numpy.linalg.inv(M)

#Or use the exponent notation, which is also understood by numpy
M_inverse = M**(-1)
Paraducks

Matrice inverse Python Numpy

from numpy.linalg import inv
a = np.array([[1., 2.], [3., 4.]])
ainv = inv(a)
np.allclose(np.dot(a, ainv), np.eye(2))
True
np.allclose(np.dot(ainv, a), np.eye(2))
True
Merwanski

Réponses similaires à “Matrice inverse Python Numpy”

Questions similaires à “Matrice inverse Python Numpy”

Plus de réponses similaires à “Matrice inverse Python Numpy” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code