my random changes its values during running my code
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
heba raouf
el 24 de Feb. de 2021
Comentada: heba raouf
el 26 de Feb. de 2021
i working on my matlab code to generate data size with specific mean and value. so i used the following syntax:
mu=30;var=100;
ts=mu+sqrt(var)*randn(1,10);
but each time i run the code, the number inside ts vector changes and i need it to constant.
this problem affect the remaining steps of code and make size changes.
any solution to this problem??
0 comentarios
Respuesta aceptada
Hernia Baby
el 24 de Feb. de 2021
Editada: Hernia Baby
el 24 de Feb. de 2021
You can generate random numbers that are repeatable with saving and restoring the generator setting.
rng(1,'twister');
mu=30;var=100;
ts=mu+sqrt(var)*randn(1,10);
ts
Detail:
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!