Exercice 18 || Solution
Ecrir un programme python-numpy qui crée et affiche la matrice du type 9x9 suivante:
1 2 3 4 5 6 7 8 9 |
[[1. 1. 1. 1. 1. 1. 1. 1. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 2. 2. 2. 2. 2. 2. 2. 1.] [1. 1. 1. 1. 1. 1. 1. 1. 1.]] |
Solution
1 2 3 4 5 6 7 8 9 10 |
# coding: utf-8 import numpy as np # on crée le tableau du type 9x9 remplis par des valeurs = 1 A = np.ones((9,9)) # on remplace la valeur qui se trouve à l'intérieur par 2 A[1:-1,1:-1] = 2 print(A) |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 18: numpy algorithme design”