Exercice 7
Empilez 2 tableaux numpy verticalement, c'est-à-dire 2 tableaux ayant la même dernière dimension (même nombre de colonnes).
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import numpy as np A = np.array([[1 , 2], [3 , 4] ]) B = np.array([[5 , 6], [7 , 8] ]) C = np.vstack((A, B)) print(C) """ affiche: [[1 2] [3 4] [5 6] [7 8]] """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 7: Empiler deux matrices numpy verticalement”