How to write a program for Pseudo Random Binary sequence in matlab?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
anu chauhan
am 12 Jul. 2016
Kommentiert: Walter Roberson
am 15 Jul. 2016
i need a program on PRBS
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 12 Jul. 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 Kommentare
Weitere Antworten (1)
anu chauhan
am 15 Jul. 2016
Bearbeitet: Walter Roberson
am 15 Jul. 2016
1 Kommentar
Walter Roberson
am 15 Jul. 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.
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!