資源描述:
《用Matlab實(shí)現(xiàn)差分方程備課講稿.doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。
1、用Matlab實(shí)現(xiàn)差分方程精品文檔(1)用Matlab實(shí)現(xiàn)差分方程(i)y(n)=0.6y(n-1)-0.08y(n-2)+x(n);(ii)y(n)=0.7y(n-1)-0.1y(n-2)+2x(n)-x(n-2);程序如下:B1=1;A1=[1,0.6,0.08];xn=[1,zeros(1,30)];xi=filtic(B1,A1,xn);hn1=filter(B1,A1,xn,xi);n=0:length(hn1)-1;subplot(3,2,1);stem(n,hn1,'.')title('a');xlabel('n');ylabel('h(n)')xn=ones(1,30);sn1
2、=filter(B1,A1,xn,xi);n=0:length(sn1)-1;subplot(3,2,2);stem(n,sn1,'.')title('b');xlabel('n');ylabel('s(n)')系統(tǒng)2:B2=[2,0,-1];A2=[1,-0.7,0.1];xn=[1,zeros(1,30)];xi=filtic(B2,A2,xn);hn2=filter(B2,A2,xn,xi);n=0:length(hn1)-1;subplot(3,2,3);stem(n,hn2,'.')title('c');xlabel('n');ylabel('h(n)')xn=ones(1,30);
3、sn2=filter(B1,A1,xn,xi);n=0:length(sn1)-1;subplot(3,2,2);stem(n,sn2,'.')title('d');xlabel('n');ylabel('s(n)')(2)設(shè)3項(xiàng)滑動(dòng)平均濾波器的輸入信號(hào)為,畫出該濾波器的輸入和輸出的前15個(gè)序列值。程序如下:B=[1,1,1]/3;A=1;n=0:30;xn=sin(n*pi/6);yn=filter(B,A,xn);subplot(3,2,1);stem(n,xn,'.');ylabel('x(n)');subplot(3,2,3);stem(n,yn,'.');xlabel('n');yl
4、abel('y(n)');收集于網(wǎng)絡(luò),如有侵權(quán)請(qǐng)聯(lián)系管理員刪除精品文檔收集于網(wǎng)絡(luò),如有侵權(quán)請(qǐng)聯(lián)系管理員刪除