Random numbers seed setting
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am using randn('seed', 1) at the beginning of my code for a simulation with 1000 replications. This is to make sure that if I rerun the simulation I'll get same results every time. But I am getting slightly different results in different runs. Can anyone help? I am using Matlab 2012a.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 19 de Abr. de 2013
Use
a=rng;
out=randn
rng(a)
out=randn
6 comentarios
Digitalsd
el 19 de Abr. de 2013
In addition you can use the code:
stream = RandStream('mt19937ar','seed',1);
RandStream.setGlobalStream(stream);
randn
stream = RandStream('mt19937ar','seed',1);
RandStream.setGlobalStream(stream);
randn
"mt19937ar" indicates the used p.s.random generator algorithm
Más respuestas (0)
Ver también
Categorías
Más información sobre Hypothesis Tests en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!