'Horizontal stuck of two arrays using np.hstack in NumPy

a = np.array([[1, 2], [3, 4]])
b = np.array([[5, 6]])

Horizontal stuck array a and b using hstack function. To use this function both arrays need to be the same size. Not sure how to do that



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source