Exercice 6
Empilez 2 marices numpy horizontalement, c'est-à-dire 2 tableaux ayant la même 1ère dimension (même nombre de lignes).
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import numpy as np A = np.array([[1,2], [6,7]]) B = np.array([[3, 4, 5], [8, 9, 10]]) C = np.hstack((A, B)) print(C) """ affiche: [[ 1 2 3 4 5] [ 6 7 8 9 10]] """ |
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
1 thought on “Solution Exercice 6: Empiler deux matrices numpy horizontalement”