Pseudo Noise Sequence

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

답변 (2개)

Fangjun Jiang
Fangjun Jiang 2011년 11월 22일

0 개 추천

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

sumit choubey
sumit choubey 2011년 11월 22일
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
sumit choubey
sumit choubey 2011년 11월 22일
basically i need to regenerate these PN sequence again and again

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2011년 11월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by