欢迎来到天天文库
浏览记录
ID:25686328
大小:75.06 KB
页数:3页
时间:2018-11-22
《《matlab例题文档》word版》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、1实现单位样值序列、单位阶跃序列、正弦序列、指数序列的MATLAB表示,以及其移位表示。单位样值序列:n=-5:10;y=[zeros(1,5),1,zeros(1,10)];stem(n,y,'.');axis([-5,10,0,2]);title('单位取样系列')复指数序列:n=0:1:19;u=exp(i*n);y=cos(n);subplot(2,1,1);stem(n,y);xlabel('n'),ylabel('y(n)');title('ʵ²¿')y=sin(n)subplot(2,1,2);stem(n,y);xlab
2、el('n');ylabel('y(n)');title('Ð鲿')单位响应序列,正弦序列,单位阶跃序列,指数函数:clearall;clc;closeall;n=0:1:39;N=40;x=zeros(1,N);x(3)=1;subplot(4,1,1);stem(n,x);xlabel('n');ylabel('x(n)');title('单位响应序列')y=1.5*sin(0.5*pi*n+pi/3);subplot(4,1,2);stem(n,y);xlabel('n');ylabel('y(n)');title('正弦序列'
3、)z=ones(1,N);subplot(4,1,3);stem(n,z);xlabel('n');ylabel('z(n)');title('单位阶跃序列')u=0.5.^n;subplot(4,1,4);stem(n,u);xlabel('n');ylabel('u(n)');title('指数函数')
此文档下载收益归作者所有