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

1 次查看(过去 30 天)
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 个评论

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by