全文预览

2FSK相干解调与非相干解调

上传者:upcfxx |  格式:doc  |  页数:10 |  大小:159KB

文档介绍
le(' 原始的波形') ylabel(' 幅度') xlabel('t') % 非相干 figure(6) %FSK 解调 b1=fir1(101,[10/800 20/800]); b2=fir1(101,[90/800 110/800]); % 设置带通参数 H1=filter(b1,1,sn); H2=filter(b2,1,sn); % 经过带通滤波器后的信号 subplot(211); plot(t,H1); title(' 经过带通滤波器 f1 后的波形') ylabel(' 幅度') xlabel('t') subplot(212); plot(t,H2); title(' 经过带通滤波器 f2 后的波形') ylabel(' 幅度') xlabel('t') figure(7) st1=ssbdemod(H1,fc,fs,2./pi);% 包络解波 subplot(211); plot(t,st1); title(' 经过包络检波的波形') ylabel(' 幅度') xlabel('t') st2=ssbdemod(H2,fc,fs,2./pi);% 包络解波 subplot(212); plot(t,st2); title(' 经过包络检波的波形') ylabel(' 幅度') xlabel('t') % 判决 for i=1:length(t) if(st1(i)>=st2(i)) st(i)=0; else st(i)=st2(i); end end figure(8) st=st1+st2; subplot(211); plot(t,st); title(' 经过抽样判决器后的波形') ylabel(' 幅度') subplot(212); plot(t,sn); title(' 原始的波形') ylabel(' 幅度') xlabel('t')

收藏

分享

举报
下载此文档