How can I generate a random real numbers from a specific range?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abdulatif Alabdulatif
el 13 de Sept. de 2014
Editada: Image Analyst
el 14 de Sept. de 2014
Hi all,
I want to pick real numbers randomly from a specific range (0 , 0.2304). Can any one help me to do that?
Thank you
1 comentario
Respuesta aceptada
Azzi Abdelmalek
el 13 de Sept. de 2014
Editada: Azzi Abdelmalek
el 13 de Sept. de 2014
rand*0.2304
For a general case (a,b)
a=0.12
b=0.45
out=a+(b-a)*rand;
2 comentarios
Image Analyst
el 14 de Sept. de 2014
Editada: Image Analyst
el 14 de Sept. de 2014
out4decimalPlaces = round(out * 10000)/10000
Please mark Azzi's answer as Accepted now.
Más respuestas (0)
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!