pseudorandom noise signal generation method
Mostrar comentarios más antiguos
How to generate a pseudorandom noise signal in MATLAB?
4 comentarios
Mathieu NOE
el 3 de Mayo de 2021
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
el 7 de Mayo de 2021
Jonas
el 7 de Mayo de 2021
are you thinking about a maximum length sequence? meaning a binary pseudorandom sequence?
Mathieu NOE
el 7 de Mayo de 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.
Respuestas (0)
Categorías
Más información sobre Waveform Generation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!