How do I set a seed to generate different random initial numbers and storing them
74 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Samson
el 2 de Jul. de 2020
Comentada: Samson
el 9 de Jul. de 2020
for kk = 1 : Iter
xD = rand(N,1)*2*pi; % Init Cond. Driver
end
3 comentarios
Wiley Mosley
el 3 de Jul. de 2020
I think you are wanting a random repeatable setup.
I think the best way to set that up is to review:
Essentially you need to set a random repeatable seed so that you can reinitialize and run with the same random values for refining your code.
rng(1,'twister');
Respuesta aceptada
Más respuestas (1)
Wiley Mosley
el 3 de Jul. de 2020
Editada: Wiley Mosley
el 3 de Jul. de 2020
rng(1,'twister'); % init generator for random repeatable with seed 1
s = rng; % save generator settings as s
for kk = 1: Iter
xD = rand (N, 1) * 2 * pi; % Init Cond. Driver
end
disp(xD) %just to print out your xD values
rng(s) % Reset the generator
for kk = 1: Iter
xD = rand (N, 1) * 2 * pi; % Init Cond. Driver
end
disp(xD) %printing out the xD values again should show that they match
I believe somthing like this should help you.
9 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!