Exercice 3
Ecrire une fonction python qui prends en paramètre une matrice numpy et qui renvoie sa trace.
On rappelle que la trace d'une matrice carrée A = (ai j) i , j est le nombre Tr(A) = a11 + a22 + ... + ann
Solution
1 2 3 4 5 6 7 8 |
import numpy as np def matrix_trace(A): return A.trace() #Exemple A = np.array([[2,3],[1,5]]) print("Tr(A) = " , matrix_trace(A)) # affiche: Tr(A) = 7 |
Younes Derfoufi
CRMEF OUJDA
2 thoughts on “Solution Exercice 3: trace d'une matrice avec numpy”