Exercice 16
Ecrire un programme python-numpy qui permet de renverser la matrice:
1 |
A = np.array([1 , 2 , 3 , 4 , 5 ]) |
en la matrice:
1 |
B = np.array([5 , 4 , 3 , 2 , 1 ]) |
Solution
1 2 3 4 5 6 7 |
import numpy as np A = np.array([1 , 2 , 3 , 4 , 5 ]) B = A[::-1] print(B) #affiche: [5 4 3 2 1] |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 16: écrire une matrice numpy à l'envers”