MATLAB: Data arrangmnet of combining 2 variables

data orderingMATLAB

I have 3 variables (X,Y,V) which I want to combine into one, in a way that the first column of X,Y and V are columned next to each other and then the second column of X,Y,V are next to each other and so on.
An example of the code:
V=magic(6)
X=magic(6)
Y=magic(5)

Best Answer

Try this
X = ones(6).*(1:6);
Y = 2*ones(6).*(1:6);
Z = 3*ones(6).*(1:6);
M = permute(cat(3,X,Y,Z), [1 3 2]);
M = reshape(M, 6, []);