plotting binary data to NRZ signal Format

8 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Walter Roberson
Walter Roberson il 2 Giu 2017
bits = reshape( (dec2bin(n,8) - '0').', 1, [] );
encoded_bits = unrz(bits)
Now you can plot the encoded bits
  4 Commenti
khoirul wakiah nasution
khoirul wakiah nasution il 5 Giu 2017
ok thank you for the answer. it's very helpful
namita kathpal
namita kathpal il 8 Ago 2018
I am running this code and it is showing undefined function or variable unrz. Kindly help me in this regard.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by