Pseudo Noise Sequence

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

回答(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 2011-11-22

0 个投票

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 个评论

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

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by