AM/DSB实验
一、实验目的:
学会利用MATLAB两种仿真方法对AM/DSB仿真。通过实验提高学生实际动手能力和编程能力,为日后从事通信工作奠定良好的基础。
二、实验内容:
(1)设调制信号m(t)=cos(2*?*fh*t),fh=0.2Hz,直流分量A=1,载波c(t)=cos(2*?*fc*t),fc=2Hz,编程画出调制信号、载波及AM的图形。
(2)采用Simulink对AM及DSB调制解调过程进行仿真。
三、程序和实验结果:
(1)程序
(a)AM调制解调
%AM调制程序 clf; clear; t=0:0.001:20; fc=2; fh=0.2; A=1;
mt=cos(2*pi*fh*t); subplot(3,1,1); plot(t,mt);
carrier=cos(2*pi*fc*t); smt=(A+mt).*carrier; subplot(3,1,2); plot(t,carrier); subplot(3,1,3); plot(t,smt);
(b)DBS调制解调
%DSB调制程序 clf; clear; t=0:0.001:20; fc=2; fh=0.2;
mt=cos(2*pi*fh*t); subplot(3,1,1); plot(t,mt);
carrier=cos(2*pi*fc*t); smt=(mt).*carrier; subplot(3,1,2); plot(t,carrier); subplot(3,1,3); plot(t,smt);
(2)simulink
(a)AM仿真模型
参数设定:sine Wave中frequency设为5rad/sec,sine Wave及sine Wave2中frequency设为40rad/sec,Analog Filter Design中的Design method设为Butterworth,Filter type设为Lowpass,Passband edge frequency设为6,点击scope中的
图标,设置number of axes为3。
(b)DSB仿真模型
参数设定:sine Wave中frequency设为5rad/sec,sine Wave及sine Wave2中frequency设为40rad/sec,Analog Filter Design中的Design method设为Butterworth,Filter type设为Lowpass,Passband edge frequency设为6,点击scope中的
图标,设置number of axes为3。
四、实验结果分析:
(1)AM调制解调程序结果分析
(2)DSB调制解调程序结果分析
(3)simulink的AM调制结果分析
(4)simulink的DSB调制结果分析