I have two 2D numpy arrays and I want to add one to the end of other.
Example:
`
My arrays are a & b:
a = [[ 1 , 2],
[ 2 , 4],
[ 6 , 8]]
b = [[ 3 , 5],
[ 7 , 4]]
The result will be:
C = [[ 1 , 2],
[ 2 , 4],
[ 6 , 8],
[ 3 , 5],
[ 7 , 4]]
`