3、1)/2';ezplot(f,t);gridon;5)单位冲击信号可看作是宽度为,幅度为的矩形脉冲,即t=t1处的冲击信号为画出,t1=1的单位冲击信号。t=0:0.01:2;f='5*(u(t-1)-u(t-1.2))';ezplot(f,t);gridon;axis([02-16]);2、典型离散信号的表示(单位样值序列、单位阶跃序列、实指数序列、正弦序列、复指数序列)编写函数产生下列序列:1)单位脉冲序列,起点n0,终点nf,在ns处有一单位脉冲。2)单位阶跃序列,起点n0,终点nf,在ns前序列值为0,在ns后序列值为1。对
4、于1)、2)小题,最后以参数n0=-10,nf=10,ns=-3为例,画出各自波形。(1)、(2)n0=-10;nf=10;ns=-3;n=n0:nf;x1=[zeros(1,ns-n0),1,zeros(1,nf-ns)];figure(1);stem(n,x1);title('单位脉冲序列');x2=[zeros(1,ns-n0),1,ones(1,nf-ns)];figure(2);stem(n,x2);title('单位阶跃序列');3)画出教材P21图1-26,即当a=1.2,0.6,-1.5,-0.8的单边指数序列(-2
5、≤n≤5)。n=-2:5;subplot(2,2,1)x1=1.2.^n.*u(n);stem(n,x1);title('1.2^n*u(n)');subplot(2,2,2)x2=0.6.^n.*u(n);stem(n,x2);title('0.6^n*u(n)');subplot(2,2,3)x3=(-1.5).^n.*u(n);stem(n,x3);title('(-1.5)^n*u(n)');subplot(2,2,4)x4=(-0.8).^n.*u(n);stem(n,x4);title('(-0.8)^n*u(n)');
6、4)画出教材P21图1-27,即的正弦序列(-7≤n≤14)。n=-7:14;x=sin(pi/7*n);stem(n,x);title('x[n]=sin(Omega_0n)正弦序列');5)画出复指数序列和的实部和虚部(-50≤n≤50)。n=-50:50;figure(1)x1=cos(pi/6*n);stem(n,x1);title('cos(npi/6)实部');figure(2)x2=sin(pi/6*n);stem(n,x2);title('sin(npi/6)虚部');figure(3)x3=cos(3*n);
7、stem(n,x3);title('cos(3*n)实部');figure(4)x4=sin(3*n);stem(n,x4);title('sin(3*n)虚部');3、信号的自变量变换1)编写程序(函数),画出教材P10图1-13(a)即f(t)的波形(-68、);ezplot(f,[-2,3]);axis([-23-0.21.2]);title('f(t)');gridon;f1=subs(f,t,t+5);subplot(2,2,2);ezplot(f1,[-7,-2]);axis([-