Pseudo Noise Sequence
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How to generate a PN sequence using an independent seed for different value of a variable.
0 comentarios
Respuestas (2)
Fangjun Jiang
el 22 de Nov. de 2011
rand()?
for k=1:3
rand('seed',k);
a=rand(1,5)
end
The generated random numbers will be repeatable.
0 comentarios
Daniel Shub
el 22 de Nov. de 2011
Not sure what you are really asking. There have been a number of different ways of seeding the random number generator(s). This might be a useful starting place: http://blogs.mathworks.com/loren/2008/11/05/new-ways-with-random-numbers-part-i/
[EDIT] This link might be better: http://blogs.mathworks.com/loren/2011/07/07/simpler-control-of-random-number-generation-in-matlab/
2 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!