pseudorandom noise signal generation method
3 次查看(过去 30 天)
显示 更早的评论
How to generate a pseudorandom noise signal in MATLAB?
4 个评论
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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!