How to generate a random number that is either 100, 200, or 300.
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Image Analyst
il 8 Ott 2022
As long as it's not your homework, you can use my code:
r = 100 * randi(3, 1)
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!