I have theee arrays, and want to combine them
import numpy as np
a = np.array([[1,2,3],[4,5,6]])
b = np.array([[7,8,9],[10,11,12]])
c = np.array([[13,14,15],[16,17,18]])
To get:
array([1,2,3,7,8,9,13,14,15, 4,5,6,10,11,12,16,17,18])
What is the function for this ?
Thanks :)