How to select a one random letter from a matrix of letters.
2 ビュー (過去 30 日間)
古いコメントを表示
I have the array.
move = [R ,P, S]
How would I select a random letter from this array.
cmove = ?
Would it look something like this ?:
cmove = move(rand(numel(move)))
0 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 4 月 2 日
編集済み: Azzi Abdelmalek
2014 年 4 月 2 日
move = {'R' ,'P', 'S'}
cmove = move(randi(numel(move)))
or
move ='RPS'
cmove = move(randi(numel(move)))
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!