pseudorandom noise signal generation method
이전 댓글 표시
How to generate a pseudorandom noise signal in MATLAB?
댓글 수: 4
Mathieu NOE
2021년 5월 3일
hello
there are alrady built in matlab random generator functions like rand or randn
you want to create your own generator like a PRBS ?
Supriya Gain
2021년 5월 7일
Jonas
2021년 5월 7일
are you thinking about a maximum length sequence? meaning a binary pseudorandom sequence?
Mathieu NOE
2021년 5월 7일
see
PRBS = @(N) randi([0 1], 1, N);
This takes one parameter, which is the number of values to generate, and returns a PRBS of that length.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!