Info

This question is closed. Reopen it to edit or answer.

how to code for 2 bit encoder and decoder

5 views (last 30 days)
Bablu Singh
Bablu Singh on 8 Nov 2018
Closed: Sabin on 13 Dec 2024
%I am facing problem in saving this msg bit as it is and decoding of the message (msg encoded) plz help % Samples to collect levels of signal in 2 bit % L=2^n(bit)=4 t=0:1/3:1; f=9; x=sin(2*pi*f*t); %encoder for i=1:4
if x(i)>=-0.8660 && x(i)<0 msg=[-1 -1] elseif x(i)==0 msg=[-1 1] elseif x(i)>0 && x(i)<0.8660 msg=[1 -1] elseif x(i)>=0.8660 msg=[1 1] end end

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!