Random number generator help
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kashish Pilyal
el 31 de Mayo de 2022
Respondida: Voss
el 31 de Mayo de 2022
I am looking to generate random numbers between a certain set of decimal numbers (for eg: 0.3 to 0.4). I tried using rand command but if anyone has a workaround?
0 comentarios
Respuesta aceptada
Voss
el 31 de Mayo de 2022
rand gives you number(s) between 0 and 1, so with appropriate scaling and offsetting, you can use it to get number(s) from any given range:
data = 0.3 + 0.1*rand(1,100) % 100 numbers between 0.3 and 0.4
plot(data)
0 comentarios
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!