plotting binary data to NRZ signal Format
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
khoirul wakiah nasution
el 2 de Jun. de 2017
Comentada: namita kathpal
el 8 de Ag. de 2018
i have a program like below :
a=dec2bin(n,8) . n is random input from 0 to 255. then i want to plot the result of 'a' into NRZ signal format. anyone can help me?
0 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Jun. de 2017
https://www.mathworks.com/matlabcentral/fileexchange/41320-line-coding--manchester--unipolar-and-polar-rz--unipolar-nrz File Exchange contribution
bits = reshape( (dec2bin(n,8) - '0').', 1, [] );
encoded_bits = unrz(bits)
Now you can plot the encoded bits
4 comentarios
namita kathpal
el 8 de Ag. de 2018
I am running this code and it is showing undefined function or variable unrz. Kindly help me in this regard.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!