How to generate a random number that is either 100, 200, or 300.

1 回表示 (過去 30 日間)
Karl
Karl 2022 年 10 月 7 日
コメント済み: Karl 2022 年 10 月 8 日
Hello, I'm looking for a way to generate a random number that is either those 3 choices (nothing in between), utilizing only the rand, randi, round, floor, or ceil methods.

採用された回答

Image Analyst
Image Analyst 2022 年 10 月 8 日
As long as it's not your homework, you can use my code:
r = 100 * randi(3, 1)

その他の回答 (1 件)

Torsten
Torsten 2022 年 10 月 7 日
Hint:
100*1 = 100
100*2 = 200
100*3 = 300
  3 件のコメント
John D'Errico
John D'Errico 2022 年 10 月 8 日
Yes. there is a way. @Torsten showed you how.
Karl
Karl 2022 年 10 月 8 日
He definitely did and it flew over my head.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by