How to generate a vector of uniformly distributed numbers around 1?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
christina
el 2 de Oct. de 2018
How to generate a vector of uniformly distributed numbers around 1 using rand function?
0 comentarios
Respuesta aceptada
Stephen23
el 2 de Oct. de 2018
Editada: Stephen23
el 2 de Oct. de 2018
>> 2*rand(1,10)
ans =
1.324304 0.866104 0.570201 1.248882 0.425728 1.720565 0.022849 1.249922 1.828464 1.977158
Of course you could generalize this for a particular offset and range:
off = 0.4;
wid = 1.5
off+wid*rand(...)
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!