MATLAB中怎么产生六组A,B,C,D,E,F的随机排列

问题描述:

MATLAB中怎么产生六组A,B,C,D,E,F的随机排列

a={'A','B','C','D','E','F'};
for i=1:6
a(randperm(length(a)))
end