Exercice 1
A l'aide de la bibliothèque numpy, créer une matrice du type 3x3 formée des entiers 1 , 2 , 3 , ... , 9.
Solution
1 2 3 4 5 6 7 8 9 10 |
# coding: utf-8 import numpy as np M = np.arange(1 , 10).reshape((3, 3)) print(M) # affiche: """ [[1 2 3] [4 5 6] [7 8 9]] """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 1: matrice numpy à l'aide de la méthode reshape”