Borrar filtros
Borrar filtros

Alphabetical random permutation

1 visualización (últimos 30 días)
Muammar
Muammar el 7 de Dic. de 2011
Hii...
in MATLAB, how to perform permutation and random permutation for alphabet?
ex: I want to do random permutation for [A B C], and the result should be [A B C], [A C B], [B A C],....,etc. If my question is not clear please inform me, because I just start learning MATLAB.
Thank you Muammar

Respuesta aceptada

the cyclist
the cyclist el 7 de Dic. de 2011
Will this do?
>> perms('ABC')
Be careful if that input gets too long. The resulting attempt at creating all the permutations (which will be ginormous) will bring MATLAB to a grinding halt. Read "doc perms" for details.
  2 comentarios
Muammar
Muammar el 7 de Dic. de 2011
Thank you..
Muammar
Muammar
Muammar el 7 de Dic. de 2011
How about random permutation for alphabet?

Iniciar sesión para comentar.

Más respuestas (1)

Sean de Wolski
Sean de Wolski el 7 de Dic. de 2011
So:
alphabet = 'A':'Z';
alphabet = alphabet(randperm(numel(alphabet)))

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by