I want to combine two numpy arrays so they look like this
the input is:
a = np.arange(3).reshape(3)
b = np.arange(3).reshape(3)
and combine a and b so it looks like this:
[[0 , 0], [0 , 1],[0 , 2],[1 , 0],[1 , 1],[1 , 2],[2 , 0],[2 , 1],[2 , 2]]