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

1 vue (au cours des 30 derniers jours)
Karl
Karl le 7 Oct 2022
Commenté : Karl le 8 Oct 2022
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.

Réponse acceptée

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

Plus de réponses (1)

Torsten
Torsten le 7 Oct 2022
Hint:
100*1 = 100
100*2 = 200
100*3 = 300
  3 commentaires
John D'Errico
John D'Errico le 8 Oct 2022
Yes. there is a way. @Torsten showed you how.
Karl
Karl le 8 Oct 2022
He definitely did and it flew over my head.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by