Answers for "np.vstack()"

0

numpy stack arrays vertically

import numpy as np
# ensure same shape of arrays to be stacked.
a = np.arange(10).reshape(2,-1)
b = np.repeat(1, 10).reshape(2,-1)
# use vstack() to stack by row.
out = np.vstack((a,b))
## print output
print(out)
# a
# b
Posted by: Guest on October-22-2020
0

vstack numpy

>>> a = np.array([[1], [2], [3]])
>>> b = np.array([[4], [5], [6]])
>>> np.vstack((a,b))
array([[1],
       [2],
       [3],
       [4],
       [5],
       [6]])
Posted by: Guest on July-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language