How can I write a function that randomly sorts numbers into equal groups?

I want to write a function that randomly sorts numbers 1-72 into 6 equal groups of 12 (with no repeats).
Any help would be great,
Thanks.

 采纳的回答

N=72; G=6; % constants per problem definition
rnv=reshape(randperm(N),[],G); % separated into G columns

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by