pseudorandom noise signal generation method
4 ビュー (過去 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!