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.

 Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Random Number Generation en Centro de ayuda y File Exchange.

Preguntada:

el 24 de Nov. de 2017

Comentada:

el 24 de Nov. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by