MATLAB: Joining two columns in a way of row by row

joining columns

Hi, i have a doubt in matlab. Please help me.
If i have A=[1;2;3;4;5] and B = [6;7;8;9;10] i need C = [1;6;2;7;3;8;4;9;5;10] it should work no matter what the numbers are and how big the matrix is.
Thanks please reply.

Best Answer

A=[1;2;3;4;5]
B = [6;7;8;9;10]
C=[A B]'
C=C(:)
% or
C=reshape([A B]',[],1)