Exercice 2
Ecrire un programme python à l'aide de la bibliothèque numpy qui détermine la transposée de la matrice suivante:
1 2 3 |
A = numpy.array([[1, 2, 3], [4, 5, 6], [7, 8, 9,]]) |
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# coding: utf-8 import numpy as np A = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9,]]) t_A = A.T print("La transopsée de A est : \n" , t_A) # affiche: """ La transopsée de A est : [[1 4 7] [2 5 8] [3 6 9]] """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 2: transposée d'une matrice avec numpy”