Python Numpy Vstack Function Syntaxe
numpy.vstack(tup)
Outrageous Ostrich
numpy.vstack(tup)
>>> a = np.array([[1], [2], [3]])
>>> b = np.array([[4], [5], [6]])
>>> np.vstack((a,b))
array([[1],
[2],
[3],
[4],
[5],
[6]])