Pseudo Noise Sequence

How to generate a PN sequence using an independent seed for different value of a variable.

Answers (2)

rand()?
for k=1:3
rand('seed',k);
a=rand(1,5)
end
The generated random numbers will be repeatable.
Daniel Shub
Daniel Shub on 22 Nov 2011

0 votes

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/

2 Comments

well i need to generate different noise like sequence for different values of a function ...
i mean suppose function is [1 2 3 4 5 6 7 8 9]
for 1 i need to generate a PN sequence tha i can generate every time for 1..
and for 2 another and so on ...
thanx for the link let me try it ...thanx again
basically i need to regenerate these PN sequence again and again

Sign in to comment.

Categories

Asked:

on 22 Nov 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!