2ask信号调制与解调 matlab,2ASK2ASK调制与解调系统的MATLAB实现及性能分析
时间: 2023-08-01 14:06:05 浏览: 93
2ASK调制与解调系统的MATLAB实现与性能分析.doc
2ASK调制与解调是一种基础的数字通信调制技术,可以通过MATLAB进行实现和性能分析。下面是一个简单的2ASK调制与解调系统的MATLAB代码实现和性能分析:
1. 2ASK调制
```matlab
% 2ASK调制
fc = 1000; %载波频率
fs = 10000; %采样频率
Ts = 1/fs; %采样周期
T = 1; %信号时间长度
t = 0:Ts:T-Ts; %时间序列
f1 = 20; %信号频率
f2 = 40;
f3 = 60;
s1 = sin(2*pi*f1*t); %信号1
s2 = sin(2*pi*f2*t); %信号2
s3 = sin(2*pi*f3*t); %信号3
s = s1+s2+s3; %信号
Ac = 1; %载波幅度
c = Ac*sin(2*pi*fc*t); %载波
y = (1+s).*c; %2ASK调制信号
figure(1);
subplot(3,1,1);
plot(t,s1);
title('信号1');
subplot(3,1,2);
plot(t,s2);
title('信号2');
subplot(3,1,3);
plot(t,s3);
title('信号3');
figure(2);
subplot(2,1,1);
plot(t,c);
title('载波');
subplot(2,1,2);
plot(t,y);
title('2ASK调制信号');
```
2. 2ASK解调
```matlab
% 2ASK解调
fc = 1000; %载波频率
fs = 10000; %采样频率
Ts = 1/fs; %采样周期
T = 1; %信号时间长度
t = 0:Ts:T-Ts; %时间序列
f1 = 20; %信号频率
f2 = 40;
f3 = 60;
s1 = sin(2*pi*f1*t); %信号1
s2 = sin(2*pi*f2*t); %信号2
s3 = sin(2*pi*f3*t); %信号3
s = s1+s2+s3; %信号
Ac = 1; %载波幅度
c = Ac*sin(2*pi*fc*t); %载波
y = (1+s).*c; %2ASK调制信号
z = y.*c; %2ASK解调信号
[b,a] = butter(5,2*pi*fc/fs); %5阶Butterworth低通滤波器
z = filter(b,a,z); %低通滤波
figure(1);
subplot(2,1,1);
plot(t,y);
title('2ASK调制信号');
subplot(2,1,2);
plot(t,z);
title('2ASK解调信号');
figure(2);
subplot(3,1,1);
plot(t,s1);
title('信号1');
subplot(3,1,2);
plot(t,s2);
title('信号2');
subplot(3,1,3);
plot(t,s3);
title('信号3');
```
3. 性能分析
可以通过比较2ASK调制前后信号的频谱和时域波形,以及2ASK解调前后信号的频谱和时域波形,来分析系统的性能表现。
```matlab
% 频谱分析
figure(1);
subplot(3,1,1);
spectrum(s1,fs);
title('信号1频谱');
subplot(3,1,2);
spectrum(s2,fs);
title('信号2频谱');
subplot(3,1,3);
spectrum(s3,fs);
title('信号3频谱');
figure(2);
subplot(2,1,1);
spectrum(c,fs);
title('载波频谱');
subplot(2,1,2);
spectrum(y,fs);
title('2ASK调制信号频谱');
figure(3);
subplot(2,1,1);
spectrum(y,fs);
title('2ASK调制信号频谱');
subplot(2,1,2);
spectrum(z,fs);
title('2ASK解调信号频谱');
% 时域波形分析
figure(4);
subplot(3,1,1);
plot(t,s1);
title('信号1时域波形');
subplot(3,1,2);
plot(t,s2);
title('信号2时域波形');
subplot(3,1,3);
plot(t,s3);
title('信号3时域波形');
figure(5);
subplot(2,1,1);
plot(t,c);
title('载波时域波形');
subplot(2,1,2);
plot(t,y);
title('2ASK调制信号时域波形');
figure(6);
subplot(2,1,1);
plot(t,y);
title('2ASK调制信号时域波形');
subplot(2,1,2);
plot(t,z);
title('2ASK解调信号时域波形');
```
可以根据频谱和时域波形的变化来评估系统的性能,如信号失真程度、频率响应特性等。通过分析可得到2ASK调制与解调系统的性能表现和优缺点,进而进行优化和改进。
阅读全文