pseudorandom noise signal generation method
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to generate a pseudorandom noise signal in MATLAB?
4 commentaires
Jonas
le 7 Mai 2021
are you thinking about a maximum length sequence? meaning a binary pseudorandom sequence?
Mathieu NOE
le 7 Mai 2021
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.
Réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!