Alphabetical random permutation
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
the cyclist
2011 年 12 月 7 日
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.
その他の回答 (1 件)
Sean de Wolski
2011 年 12 月 7 日
So:
alphabet = 'A':'Z';
alphabet = alphabet(randperm(numel(alphabet)))
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!