Azzera filtri
Azzera filtri

I have a random number generator when the input selects the interval length and only runs it if it is between 50 and 200. I was wondering how do I round the output of random numbers so that they are only integers?(ex. 0,1,2,3,4,5,6,7,8,9 )

1 visualizzazione (ultimi 30 giorni)
n= input('Enter Vector Size');
if n>=50 && n<=200
R= [0,1,2,3,4,5,6,7,8,9];
z = rand(n,1)*range(R)+min(R)
else
disp('Pick a Correct Vector Size')
n= input('Enter Vector Size');
R= [0,1,2,3,4,5,6,7,8,9];
z = rand(n,1)*range(R)+min(R)
end
  2 Commenti
Walter Roberson
Walter Roberson il 4 Ott 2018
Modificato: Walter Roberson il 4 Ott 2018
Have you considered just using randi() ?
ps: what if someone enters a bad vector size twice in a row?
Stephen23
Stephen23 il 4 Ott 2018
"I was wondering how do I round the output of random numbers so that they are only integers?"
Two easy solutions:
  • Use randi, which returns integers.
  • Round the values using round, ceil, fix, or floor.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Random Number Generation 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!

Translated by