How can I generate random varaible from 0 to 1 without including 0?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mira le
el 12 de Sept. de 2021
Comentada: Rik
el 12 de Sept. de 2021
Hello every one,
I want to generate random values between 0 and 1, but not 0
I don t want to generate 0 as a random value.
thank you
0 comentarios
Respuesta aceptada
Dave B
el 12 de Sept. de 2021
The rand function generates randum numbers between 0 and 1, not including 0 or 1:
rand
rand(1,5)
rand(3)
1 comentario
Rik
el 12 de Sept. de 2021
rng(1);%make the output of rand() repeatable
R=min(rand(1e7,1));
[0 R 1]
Although sometimes the returned value might be displayed as 0.
R
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!