How to generate a random number that is either 100, 200, or 300.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 8 Okt. 2022
As long as it's not your homework, you can use my code:
r = 100 * randi(3, 1)
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!