Pseudo Noise Sequence
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to generate a PN sequence using an independent seed for different value of a variable.
0 Commenti
Risposte (2)
Fangjun Jiang
il 22 Nov 2011
rand()?
for k=1:3
rand('seed',k);
a=rand(1,5)
end
The generated random numbers will be repeatable.
0 Commenti
Daniel Shub
il 22 Nov 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/
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!