How to write a program for Pseudo Random Binary sequence in matlab?
28 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
anu chauhan
le 12 Juil 2016
Commenté : Walter Roberson
le 15 Juil 2016
i need a program on PRBS
0 commentaires
Réponse acceptée
Walter Roberson
le 12 Juil 2016
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 commentaires
Plus de réponses (1)
anu chauhan
le 15 Juil 2016
Modifié(e) : Walter Roberson
le 15 Juil 2016
1 commentaire
Walter Roberson
le 15 Juil 2016
When you are varying which values, you are not able to obtain what results?
I do not see any use of PRBS in this code, so it would appear to be a completely new Question rather than a follow-on question.
Voir également
Catégories
En savoir plus sur Data Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!