数字调制与解调matlab仿真设计概述

目录

1.二进制相移键控(2PSK)

2.二进制差分相移键控(2DPSK)

3.正交振幅调制(QAM)


       数字调制是指用数字基带信号对载波的某些参量进行控制,使载波的这些参量随基带信号的变化而变化。根据控制的载波参量的不同,数字调制有调幅、调相和调频三种基本形式,并可以派生出多种其他形式。由于传输失真、传输损耗以及保证带内特性的原因,基带信号不适合在各种信道上进行长距离传输。为了进行长途传输,必须对数字信号进行载波调制,将信号频谱搬移到高频处才能在信道中传输。因此,大部分现代通信系统都使用数字调制技术。另外,由于数字通信具有建网灵活,容易采用数字差错控制技术和数字加密,便于集成化,并能够进入综合业务数字网(ISDN网),所以通信系统都有由模拟方式向数字方式过渡的趋势。因此,对数字通信系统的分析与研究越来越重要,数字调制作为数字通信系统的重要部分之一,对它的研究也是有必要的。通过对调制系统的仿真,我们可以更加直观的了解数字调制系统的性能及影响性能的因素,从而便于改进系统,获得更佳的传输性能。

1.二进制相移键控(2PSK)

      相移键控是利用载波的相位变化来传递数字信息,而振幅和频率保持不变。在2PSK中,通常用初始相位0和π分别表示二进制“1”和“0”。因此,2PSK信号的时域表达式为:

       由于表示信号的两种码元的波形相同,极性相反,故2PSK信号一般可以表述为一个双极性(bipolarity)全占空(100% duty ratio)矩形脉冲序列与一个正弦载波的相乘。

        MATLAB代码如下:

clear;
t0=0.15;
ts=0.001;
fc=200;
snr=10;
fs=1/ts;
df=0.2;
t=[ts:ts:t0];
snr_lin=10^(snr/10);
y=[];
nm=length(t);

%生成2PSK
for i=1:10
   x=rand;
      for j=1:15
      l=(i-1)*15+j;
          c(l)=cos(2*pi*fc*t(l));
          c1(l)=cos(2*pi*fc*t(l)+pi);
      if x>=0.5
         mi(l)=1;
         y(l)=c(l);
      elseif x<0.5
         mi(l)=0;
         y(l)=c1(l);
      end
     end
end
%加噪声
signal_power=spower(y(1:length(t)));   	% power in modulated signal
noise_power=signal_power/snr_lin;    	% compute noise power
noise_std=sqrt(noise_power);         	% compute noise standard deviation
noise=noise_std*randn(1,length(y));  	% generate noise
r=y+noise;                              % add noise to the modulated signal
%时域频域转换
m=mi;
[M,m,df1]=fftseq(m,ts,df);
M=M*ts;
f=[0:df1:df1*(length(m)-1)]-fs/2;
[Y,y,df1]=fftseq(y,ts,df);
Y=Y*ts;
[C,c,df1]=fftseq(c,ts,df);
C=C*ts;
[R,r,df1]=fftseq(r,ts,df);
R=R*ts;
[NOISE,noise,df1]=fftseq(noise,ts,df);
NOISE=NOISE*ts;
%解调
f_cutoff=70;%70Hz低通滤波器
n_cutoff=floor(70/df1);
H=zeros(size(f));
H(1:n_cutoff)=2*ones(1,n_cutoff);
H(length(f)-n_cutoff+1:length(f))=2*ones(1,n_cutoff);
yy=r.*c;
[YY,yy,df1]=fftseq(yy,ts,df);
YY=YY*ts;
DEM=H.*YY;%滤波
dem=real(ifft(DEM))/fs;
dem=dem(1:length(t));
yout=dem;
for i=(1:length(t));% 判决,得到解调结果           
    if yout(1,i)>0;     
        yout(1,i)=1;
    else
        yout(1,i)=0;
    end;
end;
 [YOUT,yout,df1]=fftseq(yout,ts,df);
YOUT=YOUT*ts;
pause;
%仿真
pause;
figure(1);
subplot(2,2,1);
plot(t,mi(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('源信号波形');
subplot(2,2,2);
plot(f,abs(fftshift(M)));xlabel('Frequency'); title('源信号频谱');
subplot(2,2,3);
plot(t,c(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('载波波形');
subplot(2,2,4);
plot(f,abs(fftshift(C)));xlabel('Frequency');title('载波频谱');
pause;
figure(2)
subplot(3,2,1);
plot(t,noise(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('噪声波形');
subplot(3,2,2);
plot(f,abs(fftshift(NOISE)));xlabel('Frequency');title('噪声频谱');
subplot(3,2,3);
plot(t,y(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('未加噪声调制波形');
subplot(3,2,4);
plot(f,abs(fftshift(Y)));xlabel('Frequency'); title('未加噪声调制频谱');
subplot(3,2,5);
plot(t,r(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('加噪声调制波形');
subplot(3,2,6);
plot(f,abs(fftshift(R)));xlabel('Frequency'); title('加噪声调制频谱');
pause;
figure(3);
subplot(2,2,1);
plot(t,yy(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('相干解调后波形');
subplot(2,2,2);
plot(f,abs(fftshift(YY)));xlabel('Frequency'); title('相干解调后频谱');
subplot(2,2,3);
plot(t,dem(1:length(t)));grid;xlabel('Time');title('低通后波形');
subplot(2,2,4);
plot(f,abs(fftshift(DEM)));xlabel('Frequency'); title('低通后频谱');
pause;
figure(4)
subplot(2,2,1);
plot(t,yout(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('抽样判决后波形');
subplot(2,2,2);
plot(f,abs(fftshift(YOUT)));xlabel('Frequency'); title('抽样判决后频谱');
subplot(2,2,3);
plot(t,mi(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('源信号波形');
subplot(2,2,4);
plot(f,abs(fftshift(M)));xlabel('Frequency'); title('源信号频谱');

2.二进制差分相移键控(2DPSK)

       在2PSK信号中,相位变化是以未调载波的相位作为参考基准的。由于它利用载波相位的绝对数值表示数字信息,所以又称为绝对相移。2PSK相干解调时,由于载波恢复中相位有0、π模糊性,导致解调过程出现“反向工作”现象,恢复出的数字信号“1”和“0”倒置,从而使2PSK难以实际应用。为了克服此缺点,提出了二进制差分相移键控(2DPSK)方式。
       2DPSK是利用前后相邻码元的载波相对相位变化传递数字信息,所以又称相对相移键控。假设 为当前码元与前一码元的载波相位差,可定义一种数字信息与 之间的关系为

于是可以将一组二进制数字信息与其对应的2DPSK信号的载波相位关系示例如下:

       2DPSK信号的另一种解调方法是差分相干解调(相位比较法),用这种方法解调进不需要专门的相干载波,只需由收到的2DPSK信号延时一个码元间隔Ts,然后与2DPSK信号本身相乘。相乘器起着相位比较的作用,相乘结果反映了前后码元的相位差,经低通滤波后再抽样判决,即可直接恢复原始数字信息,故解调器中不需要码反变换器。

        MATLAB代码如下:

clear;
t0=0.15;
ts=0.001;
fc=200;
snr=10;
fs=1/ts;
df=0.2;
t=[ts:ts:t0];
snr_lin=10^(snr/10);
y=[];
nm=length(t);
%生成2DPSK
bn=[];bn(1)=1;%bn是差分码,设bn的第一个符号为1
for i=1:10
   x=rand;
   if x>=0.5
      m(i)=1;
    else
      m(i)=0;    
   end
   bn(i+1)=xor(m(i),bn(i));
   for j=1:15
        l=(i-1)*15+j;
        c(l)=cos(2*pi*fc*t(l));
        c1(l)=cos(2*pi*fc*t(l)+pi);
      if m(i)==1;
         mi(l)=1;
      else
         mi(l)=0;
      end
      if bn(i+1)==1;
         bn1(l)=1;
         y(l)=c(l);
      else
         bn1(l)=0;
         y(l)=c1(l);
      end
   end
end
%加噪声
signal_power=spower(y(1:length(t)));   	% power in modulated signal
noise_power=signal_power/snr_lin;    	% compute noise power
noise_std=sqrt(noise_power);         	% compute noise standard deviation
noise=noise_std*randn(1,length(y));  	% generate noise
r=y+noise;                              % add noise to the modulated signal
%时域频域转换
m=mi;
[M,m,df1]=fftseq(m,ts,df);
M=M*ts;
[BN1,bn1,df1]=fftseq(bn1,ts,df);
BN1=BN1*ts;
f=[0:df1:df1*(length(m)-1)]-fs/2;
[Y,y,df1]=fftseq(y,ts,df);
Y=Y*ts;
[C,c,df1]=fftseq(c,ts,df);
C=C*ts;
[R,r,df1]=fftseq(r,ts,df);
R=R*ts;
[NOISE,noise,df1]=fftseq(noise,ts,df);
NOISE=NOISE*ts;
%解调
f_cutoff=70;
n_cutoff=floor(70/df1);
H=zeros(size(f));
H(1:n_cutoff)=2*ones(1,n_cutoff);
H(length(f)-n_cutoff+1:length(f))=2*ones(1,n_cutoff);
yy=r.*c;
[YY,yy,df1]=fftseq(yy,ts,df);
YY=YY*ts;
DEM=H.*YY;%滤波
dem=real(ifft(DEM))/fs;
dem=dem(1:length(t));
ytemp=dem;
y1=ytemp;
for i=(1:length(t));% 判决,得到解调结果           
    if y1(1,i)>0;     
       y1(1,i)=1;
    else
        y1(1,i)=0;
    end;
end;
for i=(1:10);%码反变换
    k=y1((i-1)*15+1:i*15);
    if mean(k)>0.5;
       y2(i)=1;     
     else
       y2(i)=0;
    end   
end
y3(1)=xor(y2(1),1);
for i=(2:10);
    y3(i)=xor(y2(i-1),y2(i));
end
for i=(1:10);
    for j=(1:15);
        l=(i-1)*15+j;
        if y3(i)==1;
           yout(l)=1;
        else
           yout(l)=0;
        end
    end  
end  
[Y1,y1,df1]=fftseq(y1,ts,df);
Y1=Y1*ts;
[YOUT,yout,df1]=fftseq(yout,ts,df);
YOUT=YOUT*ts;
pause;
%仿真
pause;
figure(1);
subplot(3,2,1);
plot(t,mi(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('源信号波形');
subplot(3,2,2);
plot(f,abs(fftshift(M)));xlabel('Frequency'); title('源信号频谱');
subplot(3,2,3);
plot(t,bn1(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('码变换后波形');
subplot(3,2,4);
plot(f,abs(fftshift(BN1)));xlabel('Frequency');title('码变换后频谱');
subplot(3,2,5);
plot(t,c(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('载波波形');
subplot(3,2,6);
plot(f,abs(fftshift(C)));xlabel('Frequency');title('载波频谱');
pause;
figure(2);
subplot(3,2,1);
plot(t,noise(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('噪声波形');
subplot(3,2,2);
plot(f,abs(fftshift(NOISE)));xlabel('Frequency');title('噪声频谱');
subplot(3,2,3);
plot(t,y(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('未加噪声调制波形');
subplot(3,2,4);
plot(f,abs(fftshift(Y)));xlabel('Frequency'); title('未加噪声调制频谱');
subplot(3,2,5);
plot(t,r(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('加噪声调制波形');
subplot(3,2,6);
plot(f,abs(fftshift(R)));xlabel('Frequency'); title('加噪声调制频谱');
pause;
figure(3);
subplot(3,2,1);
plot(t,yy(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('相干解调后波形');
subplot(3,2,2);
plot(f,abs(fftshift(YY)));xlabel('Frequency'); title('相干解调后频谱');
subplot(3,2,3);
plot(t,dem(1:length(t)));grid;xlabel('Time');title('低通后波形');
subplot(3,2,4);
plot(f,abs(fftshift(DEM)));xlabel('Frequency'); title('低通后频谱');
subplot(3,2,5);
plot(t,y1(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('抽样判决后波形');
subplot(3,2,6);
plot(f,abs(fftshift(Y1)));xlabel('Frequency'); title('抽样判决后频谱');
pause;
figure(4);
subplot(2,2,1);
plot(t,yout(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('码反变换后波形');
subplot(2,2,2);
plot(f,abs(fftshift(YOUT)));xlabel('Frequency'); title('码反变换后频谱');
subplot(2,2,3);
plot(t,mi(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('源信号波形');
subplot(2,2,4);
plot(f,abs(fftshift(M)));xlabel('Frequency'); title('源信号频谱');

3.正交振幅调制(QAM)

       正交振幅调制(Quatrature Amplitude Modulation, QAM)是一种振幅和相位联合键控。在多进制键控体制中,相位键控的带宽和功率占用方面都具有优势,即带宽占小和比特信噪比要求低。因此,MPSK和MDPSK体制为人们所喜欢。但是在MPSK体制中,随着M的增大,相邻相位的距离逐渐减小,使噪声容限随之减小,误码率难于保证。为了改善在M大时的噪声容限,发展出了QAM体制。在QAM体制中,信号的振幅和相位作为两个独立的参量同时受到调制。这种信号的一个码元要以表示为:

        MATLAB代码如下:

clear;
t0=0.15;
ts=0.001;
fc=200;
snr=10;
fs=1/ts;
df=0.2;
t=[ts:ts:t0];
snr_lin=10^(snr/10);
nm=length(t);
for i=1:10
   x=rand;
   for j=1:15
       l=(i-1)*15+j;
       c(l)=cos(2*pi*fc*t(l));
       s(l)=sin(2*pi*fc*t(l));
      if x>=0.7
         mi(l)=3;
      elseif x<=0.3
         mi(l)=1;
      elseif x<=0.5
          mi(l)=-1;
      else
          mi(l)=-3;
      end
   end
end
for i=1:10
   x=rand;
   for j=1:15
       l=(i-1)*15+j;
       c(l)=cos(2*pi*fc*t(l));
       s(l)=sin(2*pi*fc*t(l));
      if x>=0.8
         mq(l)=3;
      elseif x<=0.3
         mq(l)=1;
      elseif x<=0.6
          mq(l)=-1;
      else
          mq(l)=-3;
      end
  end
end
nm=length(t);
mi(nm)=mi(nm-1);
mq(nm)=mq(nm-1);
ask1=mi.*c;
ask2=mq.*s;
y=mi.*c+mq.*s;
%加噪声
signal_power=spower(y(1:length(t)));   	% power in modulated signal
noise_power=signal_power/snr_lin;    	% compute noise power
noise_std=sqrt(noise_power);         	% compute noise standard deviation
noise=noise_std*randn(1,length(y));  	% generate noise
r=y+noise;                              % add noise to the modulated signal
yi=r.*c;
yq=r.*s;
%%时域频域转换;
mk=mi;
ml=mq;
[M1,mk,df1]=fftseq(mk,ts,df);
M1=M1/fs;
[M2,ml,df1]=fftseq(ml,ts,df);
M2=M2/fs;
[C,c,df1]=fftseq(c,ts,df);
C=C/fs;
[S,s,df1]=fftseq(s,ts,df);
S=S/fs;
[ASK1,ask1,df1]=fftseq(ask1,ts,df);
ASK1=ASK1/fs;
[ASK2,ask2,df1]=fftseq(ask2,ts,df);
ASK2=ASK2/fs;
f=[0:df1:df1*(length(mk)-1)]-fs/2;
[NOISE,noise,df1]=fftseq(noise,ts,df);
NOISE=NOISE*ts;
u=y;
[U,u,df1]=fftseq(u,ts,df);
U=U/fs;
[R,r,df1]=fftseq(r,ts,df);
R=R/fs;
[Yi,yi,df1]=fftseq(yi,ts,df);
Yi=Yi/fs;
[Yq,yq,df1]=fftseq(yq,ts,df);
Yq=Yq/fs;
%滤波
f_cutoff=70;
n_cutoff=floor(70/df1);
H=zeros(size(f));
H(1:n_cutoff)=2*ones(1,n_cutoff);
H(length(f)-n_cutoff+1:length(f))=2*ones(1,n_cutoff);
DEM1=H.*Yi;
dem1=real(ifft(DEM1))/fs;
DEM2=H.*Yq;
dem2=real(ifft(DEM2))/fs;
dem1=dem1(1:length(t));
dem2=dem2(1:length(t));
%抽样判决
for i=(1:10);
    k=dem1((i-1)*15+1:i*15);
    x1(i)=mean(k);
    for j=(1:15)
        l=(i-1)*15+j;
      if x1(i)>=0
          x1(i)=max(k)
          if x1(i)>3*10^-6
             y1(l)=3
          else
             y1(l)=1
          end
      end
      if x1(i)<0
          x1(i)=min(k)
          if x1(i)<-3*10^-6
             y1(l)=-3
          else
              y1(l)=-1
          end
      end
    end  
end
for i=(1:10);
    k=dem2((i-1)*15+1:i*15);
    x2(i)=mean(k);
    for j=(1:15)
        l=(i-1)*15+j;
      if x2(i)>=0
          x2(i)=max(k)
          if x2(i)>3*10^-6
             y2(l)=3
          else
             y2(l)=1
          end
      end
      if x2(i)<0
          x2(i)=min(k)
          if x2(i)<-3*10^-6
             y2(l)=-3
          else
             y2(l)=-1
          end
      end
    end  
end
 [Y1,y1,df1]=fftseq(y1,ts,df);
Y1=Y1/fs;
[Y2,y2,df1]=fftseq(y2,ts,df);
Y2=Y2/fs;
%仿真
pause;
figure(1)
subplot(2,2,1)
plot(t,mi(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('源信号1波形');
subplot(2,2,2)
plot(f,abs(fftshift(M1)));xlabel('Frequncy');title('源信号1频谱');
subplot(2,2,3)
plot(t,mq(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('源信号2波形');
subplot(2,2,4)
plot(f,abs(fftshift(M2)));xlabel('Frequncy');title('源信号2频谱');
pause;
figure(2)
subplot(2,2,1)
plot(t,c(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('载波1波形');
subplot(2,2,2)
plot(f,abs(fftshift(C)));xlabel('Frequncy');title('载波1频谱');
subplot(2,2,3)
plot(t,s(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('载波2波形');
subplot(2,2,4)
plot(f,abs(fftshift(S)));xlabel('Frequncy');title('载波2频谱');
pause;
figure(3)
subplot(2,2,1)
plot(t,ask1(1:length(t)));grid;axis([0 0.15 -5 5]);xlabel('Time');title('4ASK信号1波形');
subplot(2,2,2)
plot(f,abs(fftshift(ASK1)));xlabel('Frequncy');title('4ASK信号1频谱');
subplot(2,2,3)
plot(t,ask2(1:length(t)));grid;axis([0 0.15 -5 5]);xlabel('Time');title('4ASK信号2波形');
subplot(2,2,4)
plot(f,abs(fftshift(ASK1)));xlabel('Frequncy');title('4ASK信号2频谱');
pause;
figure(4)
subplot(3,2,1)
plot(t,noise(1:length(t)));grid;axis([0 0.15 -2 2]);xlabel('Time');title('噪声波形');
subplot(3,2,2)
plot(f,abs(fftshift(NOISE)));xlabel('Frequency');title('噪声频谱');
subplot(3,2,3)
plot(t,u(1:length(t)));grid;axis([0 0.15 -5 5]);xlabel('Time');title('未加噪声调制16QAM波形');
subplot(3,2,4)
plot(f,abs(fftshift(U)));xlabel('Frequncy');title('未加噪声调制16QAM频谱');
subplot(3,2,5)
plot(t,r(1:length(t)));grid;axis([0 0.15 -5 5]);xlabel('Time');title('加噪声调制16QAM波形');
subplot(3,2,6)
plot(f,abs(fftshift(R)));xlabel('Frequncy');title('加噪声调制16QAM频谱');
pause;
figure(5)
subplot(2,2,1)
plot(t,yi(1:length(t)));grid;xlabel('Time');title('相干解调后信号1波形');
subplot(2,2,2)
plot(f,abs(fftshift(Yi)));xlabel('Frequncy');title('相干解调后信号1频谱');
subplot(2,2,3)
plot(t,dem1(1:length(t)));grid;xlabel('Time');title('低通后信号1波形');
subplot(2,2,4)
plot(f,abs(fftshift(DEM1)));xlabel('Frequency');title('低通后信号1频谱');
pause;
figure(6)
subplot(2,2,1)
plot(t,yq(1:length(t)));grid;xlabel('Time');title('相干解调后信号2波形');
subplot(2,2,2)
plot(f,abs(fftshift(Yq)));xlabel('Frequency');title('相干解调后信号2频谱');
subplot(2,2,3)
plot(t,dem2(1:length(t)));grid;xlabel('Time');title('低通后信号2波形');
subplot(2,2,4)
plot(f,abs(fftshift(DEM2)));xlabel('Frequency');title('低通后信号2频谱');
pause;
figure(7)
subplot(2,2,1)
plot(t,y1(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('抽样判决后信号1波形');
subplot(2,2,2)
plot(f,abs(fftshift(Y1)));xlabel('Frequency');title('抽样判决后信号1频谱');
subplot(2,2,3)
plot(t,mi(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('源信号1波形');
subplot(2,2,4)
plot(f,abs(fftshift(M1)));xlabel('Frequncy');title('源信号1频谱');
pause;
figure(8)
subplot(2,2,1)
plot(t,y2(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('抽样判决后信号2波形');
subplot(2,2,2)
plot(f,abs(fftshift(Y2)));xlabel('Frequency');title('抽样判决后信号2频谱')
subplot(2,2,3)
plot(t,mq(1:length(t)));grid;axis([0 0.15 -3.5 3.5]);xlabel('Time');title('源信号2波形');
subplot(2,2,4)
plot(f,abs(fftshift(M2)));xlabel('Frequncy');title('源信号2频谱');

fftseq.m程序
function [M,m,df]=fftseq(m,ts,df) 
%       [M,m,df]=fftseq(m,ts,df)
%       [M,m,df]=fftseq(m,ts)
%FFTSEQ     generates M, the FFT of the sequence m.
%       The sequence is zero padded to meet the required frequency resolution df.
%       ts is the sampling interval. The output df is the final frequency resolution.
%       Output m is the zero padded version of input m. M is the FFT.
fs=1/ts;
if nargin == 2
  n1=0;
else
  n1=fs/df;
end
n2=length(m);
n=2^(max(nextpow2(n1),nextpow2(n2)));
M=fft(m,n);
m=[m,zeros(1,n-n2)];
df=fs/n;

       2PSK、2DPSK检测这两种信号时判决器均可工作在最佳门限电平(零电平)。2DPSK抗噪声性能不及2PSK。2PSK系统存在“反向工作”问题,而2DPSK系统不存在“反向工作”问题,因此在实际应用中,真正作为传输用的数字调相信号几乎都是DPSK信号。2PSK信号的带宽、频带利用率和2DPSK信号的相同。
      16QAM与2PSK、2DPSK相比,在相同的码元速率情况下其信息速率较高,频带利用率高,但误码率最高,且实现的难度大。

  • 7
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fpga和matlab

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值