Hstack

10 min Niveau 4

Introduction

Variantes de la fonction numpy.stack pour empiler de façon à faire un seul tableau horizontalement.

Exemple

import numpy as np 
a = np.array([[1,2],[3,4]]) 

print 'First array:' 
print a 
print '\n'  
b = np.array([[5,6],[7,8]]) 

print 'Second array:' 
print b 
print '\n'  

print 'Horizontal stacking:' 
c = np.hstack((a,b)) 
print c 
print '\n'

Il produirait le résultat suivant -

First array:
[
    [1 2]
    [3 4]
]

Second array:
[
    [5 6]
    [7 8]
]

Horizontal stacking:
[
    [1 2 5 6]
    [3 4 7 8]
]
logo discord

Besoin d'aide ?

Rejoignez notre communauté officielle et ne restez plus seul à bloquer sur un problème !

En savoir plus