How to write a program for Pseudo Random Binary sequence in matlab?
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
anu chauhan
el 12 de Jul. de 2016
Comentada: Walter Roberson
el 15 de Jul. de 2016
i need a program on PRBS
0 comentarios
Respuesta aceptada
Walter Roberson
el 12 de Jul. de 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 comentarios
Más respuestas (1)
anu chauhan
el 15 de Jul. de 2016
Editada: Walter Roberson
el 15 de Jul. de 2016
1 comentario
Walter Roberson
el 15 de Jul. de 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.
Ver también
Categorías
Más información sobre Data Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!