Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Probability in printing text

1 回表示 (過去 30 日間)
YM
YM 2019 年 5 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I want, upon starting my function, for one of 5 text statements to be printed. There should be 1/5 chance of any one appearing, and the text printed should generally change with each run. How could I go about doing this? Additionally, if I wanted to change the text statements to choose from (7 instead of 5), how would I do that?

回答 (1 件)

Guillaume
Guillaume 2019 年 5 月 16 日
Use randi to choose an integer between 1 and the number of strings, use that to index into a cell array of char vector or a string array:
texts = ["some text", "some other text", "and more", "etc."];
selectedtext = randi(numel(texts));
disp(texts(selectedtext))

この質問は閉じられています。

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by