数字信号处理实验六.doc_第1页
数字信号处理实验六.doc_第2页
数字信号处理实验六.doc_第3页
数字信号处理实验六.doc_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

数字信号处理实验六1, 例1:nx=0:8*pi;x=sin(nx/2)+sin(10*nx)/3;subplot(3,1,1);stem(nx,x);a=1,-0.34319,0.60439,-0.20407;b=0.1321,0.3963,0.3963,0.1321;nh=0:9;h=impz(b,a,nh);subplot(3,1,2);stem(nh,h);y=dlsim(b,a,x);subplot(3,1,3);stem(y);例2:a=a,-0.9;b=1,0.9;x01=0;y01=0;xi=filtic(b,a,x01,y01);N=40;n=0:N-1;x=(exp(-0.05+j*0.4)*n).*n=2;y=filter(b,a,x,xi);subplot(2,2,1),stem(n,real(x);title(输入信号x(n)的实部);subplot(2,2,2),stem(n,imag(x);title(输入信号x(n)的虚部);subplot(2,2,3),stem(n,real(x);title(系统响应y(n)的实部);subplot(2,2,4),stem(n,imag(x);title(系统响应y(n)的虚部);例3:a=1,-1.5,0.5;b=1;N=20;n=0:N-1;x=0.25.n;x0=zeros(1,N);y01=4,10;xi=filtic(b,a,y01);y0=filter(b,a,x0,xi);xi0=filtic(b,a,0);y1=filter(b,a,x,xi0);y=filter(b,a,x,xi);y2=(1/3)*(1/4).n+(1/2).n+(2/3).*ones(1,N);subplot(2,3,1),stem(n,x);title(输入信号x(n);subplot(2,3,2),stem(n,y0);title(信号的零输入响应);subplot(2,3,3),stem(n,y1);title(信号的零状态响应);subplot(2,2,3),stem(n,y);title(用filter求系统的完全响应y(n);subplot(2,2,4),stem(n,y2);title(用公式求系统的完全响应y(n);2,(1):nx=0:10;x=0,0,0,1,1,1,1,1,1,1,1;subplot(3,1,1);stem(nx,x);a=1,-0.5,1,-0.5;b=1,-1,1;y01=0;x01=0;nh=0:9;h=impz(b,a,nh);subplot(3,1,2);stem(nh,h);y=dlsim(b,a,x);subplot(3,1,3);stem(y);(2):nx=0:10;x=1,0,0,0,0,-1,0,0,0,0,0;subplot(3,1,1);stem(nx,x);a=1,-0.5,1,-0.5;b=1,-1,1;y01=0;x01=0;nh=0:9;h=impz(b,a,nh);subplot(3,1,2);stem(nh,h);y=dlsim(b,a,x);subplot(3,1,3);stem(y);(3):nx=0:10;n=0,0,0,1,1,1,1,1,1,1,1;x=(exp(0.1*nx).*n;subplot(3,1,1);stem(nx,x);a=1,-0.5,1,-0.5;b=1,-1,1;y01=0;x01=0;nh=0:9;h=impz(b,a,nh);subplot(3,1,2);stem(nh,h);y=dlsim(b,a,x);subplot(3,1,3);stem(y);(4):nx=0:10;n=0,0,0,1,1,1,1,1,1,1,1;x=0.5.*nx.*n;subplot(3,1,1);stem(nx,x);a=1,-0.5,1,-0.5;b=1,-1,1;y01=0;x01=0;nh=0:9;h=impz(b,a,nh);subplot(3,1,2);stem(nh,h);y=dlsim(b,a,x);subplot(3,1,3);stem(y);3,(1):a=1,-0.602012,0.495684,-0.0359244;b=0.187632,0.241242,0.241242,0.187632;N=20;n=0:N-1;x=n=3;x0=zeros(1,N);y01=5,5;xi=filtic(b,a,y01);y0=filter(b,a,x0,xi);xi0=filtic(b,a,0);y1=filter(b,a,x,xi0);y=filter(b,a,x,xi);subplot(2,2,1),stem(n,x);title(输入信号x(n);subplot(2,2,2),stem(n,y0);title(信号的零输入响应);subplot(2,2,3),stem(n,y1);title(信号的零状态响应);subplot(2,2,4),stem(n,y);title(用filter求系统的完全响应y(n);(2):a=1,-0.602012,0.495684,-0.0359244;b=0.187632,0.241242,0.241242,0.187632;N=10;n=0:N-1;x=1,1,1,1,1,0,0,0,0,0;x0=zeros(1,N);y01=5,5;xi=filtic(b,a,y01);y0=filter(b,a,x0,xi);xi0=filtic(b,a,0);y1=filter(b,a,x,xi0);y=filter(b,a,x,xi);subplot(2,2,1),stem(n,x);title(输入信号x(n);subplot(2,2,2),stem(n,y0);title(信号的零输入响应);subplot(2,2,3),stem(n,y1);title(信号的零状态响应);subplot(2,2,4),stem(n,y);title(用filter求系统的完全响应y(n);(3):a=1,-0.602012,0.495684,-0.0359244;b=0.187632,0.241242,0.241242,0.187632;N=20;n=0:N-1;x=cos(2*pi/3)+sin(3*pi/10)*n);x0=zeros(1,N);y01=5,5;xi=filtic(b,a,y01);y0=filter(b,a,x0,xi);xi0=filtic(b,a,0);y1=filter(b,a,x,xi0);y=filter(b,a,x,xi);subplot(2,2,1),stem(n,x);title(输入信号x(n);subplot(2,2,2),stem(n,y0);title(信号的零输入响应);subplot(2,2,3),stem(n,y1);title(信号的零状态响应);subplot(2,2,4),stem(n,y);title(用filter求系统的完全响应y(n);(4):a=1,-0.602012,0.495684,-0.0359244;b=0.187632,0.241242,0.241242,0.187632;N=20;n=0:N-1;x=(0.6*n).*n=3;x0=zeros(1,N);y01=5,5;xi=filtic(b,a,y01);y0=filter(b,a,x0,xi);xi0=filtic(b,a,0);y1=filter(b,a,x,xi0);y=filter(b,a,x,xi);subplot(2,2,1),stem(n,x);title(输入信号x(n);subplot

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论