Alphabetical random permutation
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
the cyclist
il 7 Dic 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.
Più risposte (1)
Sean de Wolski
il 7 Dic 2011
So:
alphabet = 'A':'Z';
alphabet = alphabet(randperm(numel(alphabet)))
0 Commenti
Vedere anche
Categorie
Scopri di più su Random Number Generation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!