MATLAB: X=[x1(:,:) x1(:,:)]

callbackmathematicsMATLABmatlab function

help me please if you have know how about x=[x1(:,:) x1(:,:)] ? what is doing it?

Best Answer

>> x1 =[ 1 2
3 4];
x = [x1(:,:), x1(:,:)]
x =
1 2 1 2
3 4 3 4