MATLAB: Combine matrix in matlab

combine matrixMATLAB

I need to combine the two matrices a and b to yield c
A = [1,2,3] & B = [4,5,6]
C = [1,4,2,5,3,6]

Best Answer

reshape([A;B],1,[])