按关键词阅读: 设计 matlab 仿真 调制 解调 ask
体会到理论和实际是不同的 , 实践 离不开理论 , 理论只有应用于实践才能发挥其作用 。
学过的东西 , 只有自己实际 去做了才能更熟悉 , 才能对其本质更了解 。
在将理论用各种方法实现的同时 , 我们也在不断的搜集资料 , 不断的学习 , 获得更多的相关知识 。
在对MATLAB的应用中和学习别人的程序时 , 我体会到 MATLAB的功能之强大 , 应用之广泛 , 任何 一件作品都是没有最好 , 只有更好 , 但是无论通过怎样的途径 , 我们都能表达出 理论的成果 。
因此对其产生了更大的兴趣 , 很有感觉 。
总之这次课程设计使我收 获甚大 。
5参考文献1 樊昌信 , 丽娜通信原理第六版国 。
8、防工业.2010.07;
2 唐向宏 , 岳恒立 , 雪峰.MATLAB及在电子信息类课程中的应用第二版.电子工 业.2009.06;
3 郭文彬 , 桑林.通信原理-基于Matlab的计算机仿真.邮电大学.2006.05;
4 邬春明.通信原理实验与课程设计.大学.2013.07附录一clear all;
close all;
%基带信号i=10;
j=5000;
a=roun d(ra nd(1,i);
t=li nspace(0,5,j);
fb=i/5;
tb=1/fb;
s=t;
for n=1:iif a(n)=0for b=j/i*( n-1)+1:j/i*n s(b)=0;
endelse for b=j/i*( 。
9、 n-1)+1:j/i*ns(b)=1;
endendendfigure(1)subplot(4,2,1);
plot(t,s);
grid ontitle(基带信号);
axis(0,10/fb,0,2);
%载波信号fc=10;
tc=1/fc;
Vc=cos(2*pi*10*t);
subplot(4,2,2);
plot(t,Vc);
grid ontitle(载波信号);
axis(0,5,-2,2);
%调制信号ask=s.*Vc;
figure(1);
subplot(4,2,3);
plot(t,ask);
grid ontitle(ask 调制信号);
axis(0,5,-2,2);
figure(2);
sub 。
10、plot(3,2,1);
plot(abs(fft(s);
axis(0,200,0,400);
title(原始信号频谱);
figure(2);
subplot(3,2,2);
plot(abs(fft(ask);
title(2ASK 信号频谱);
axis(0,200,0,400);
%加入高斯噪声no ise=awg n(ask,30);
figure(1);
subplot(4,2,4);
plot(t,noise);
grid ontitle(加入高斯噪声);
axis(0,5,-2,2);
figure(2);
subplot(3,2,3);
plot(abs(fft( noise);
axis(0,200,0, 。
11、400);
title(加入白噪声的 2ASK信号频谱);
%调用带通滤波器函数jt1=daiton g(fb,fc, noise);
figure(1);
subplot(4,2,5);
plot(t,jt1);
grid ontitle(经过带通滤波后);
axis(0,5,-2,2);
%乘以相干载波jt2=jt1.*Vc;
figure(1);
subplot(4,2,6);
plot(t,j t2);
grid on axis(0,5,-2,2);
title(乘以相干载波后);
figure(2);
subplot(3,2,4);
plot(abs(fft(jt2);
axis(0,200,0,400);
title 。
【ASK|2ASK调制解调matlab仿真设计】12、(相乘后信号频谱);
%调用低通滤波器jt=dito ng(fb,jt2,t);
figure(1);
subplot(4,2,7);
plot(t,jt);
grid onaxis(0,5,-2,2);
title(经过低通滤波后);
figure(2);
subplot(3,2,5);
plot(abs(fft(jt);
axis(0,200,0,400);
title(经低通滤波器后信号频谱);
%判决器k=0.25;
pdst=1*(jt0.25);
figure(1);
subplot(4,2,8);
plot(t,pdst);
grid onaxis(0,5,0,2);
title(判决后输出波形);
figure(2);
subplot(3,2,6);
plot(abs(fft(jt);
axis(0,200,0,400);
title(经抽样判决后信号频谱);
最后加上评语表格 , 不要改变表格大小 , 不要跨页设置表格评语 。

稿源:(未知)
【傻大方】网址:/a/2021/0816/0023746884.html
标题:ASK|2ASK调制解调matlab仿真设计( 二 )