as i said in topic name, i want to put variables of 3 arrays in a row of another array.
look: for example i have 3 arrays X1, X2, X3 that them variables are:
X1=[1 2 3];
X2=[4 5 6];
X3=[7 8 9];
and another array Y is this look:
Y=zeros(3,3);
0 0 0
0 0 0
0 0 0
now i want randomize X1 in first row, X2 in second row and X3 in third row like this:
3 1 2
4 6 5
9 8 7
many thanx :)