- 1、本文档共50页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
数字信号处理实验答案剖析
实验clear all;
a=[1 2 3 4];
b=[3 4 5 6];
c=a+b;
d=a-b;
e=a.*b;
f=a./b;
g=a.^b;
n=1:4;
subplot(4,2,1);stem(n,a);
xlabel(n);xlim([0 5]);ylabel(A);
subplot(4,2,2);stem(n,b);
xlabel(n);xlim([0 5]);ylabel(B);
subplot(4,2,3);stem(n,c);
xlabel(n);xlim([0 5]);ylabel(C);
subplot(4,2,4);stem(n,d);
xlabel(n);xlim([0 5]);ylabel(D);
subplot(4,2,5);stem(n,e);
xlabel(n);xlim([0 5]);ylabel(E);
subplot(4,2,6);stem(n,f);
xlabel(n);xlim([0 5]);ylabel(F);
subplot(4,2,7);stem(n,g);
xlabel(n);xlim([0 5]);ylabel(G);
(2)用MATLAB实现下列序列:
a) x(n)=0.8n 0≤n≤15
b) x(n)=e(0.2+3j)n 0≤n≤15
c) x(n)=3cos(0.125πn+0.2π)+2sin(0.25πn+0.1π) 0≤n≤15
d) 将c)中的x(n)扩展为以16为周期的函数x16(n)=x(n+16),绘出四个周期。
e) 将c)中的x(n)扩展为以10为周期的函数x10(n)=x(n+10),绘出四个周期。
clear all;
N=0:15;
% a) x(n)=0.8n 0≤n≤15
xa=0.8.^N;
figure;subplot(2,1,1);stem(N,xa); xlabel(n);xlim([0 16]);ylabel(xa);
% b) x(n)=e(0.2+3j)n 0≤n≤15
xb=exp((0.2+3*j)*N);
subplot(2,1,2);stem(N,xb);
xlabel(n);xlim([0 16]);ylabel(xb);figure;
% c) x(n)=3cos(0.125πn+0.2π)+2sin(0.25πn+0.1π) 0≤n≤15
xc=3*cos(0.125*pi*N+0.2*pi)+2*sin(0.25*pi*N+0.1*pi);
subplot(3,1,1);stem(N,xc);xlabel(n);xlim([0 16]);ylabel(xc);
% d) 将c)中的x(n)扩展为以16为周期的函数x16(n)=x(n+16),绘出四个周期。
k=0:3;m=0;
for i=1:4
for j=1:16
m=m+1;
n(m)=N(j)+16*k(i);
x16(m)=3*cos(0.125*pi*n(m)+0.2*pi)+2*sin(0.25*pi*n(m)+0.1*pi);
end
end
subplot(3,1,2);stem(n,x16);xlabel(n);ylabel(x16);
% e) 将c)中的x(n)扩展为以10为周期的函数x10(n)=x(n+10),绘出四个周期。
for j=1:10
x10(j)=x16(j);
end
for i=1:3
for m=1:10
x10(i*10+m)=x10(m);
end
end
n=1:40;
subplot(3,1,3);stem(n,x10); xlabel(n);ylabel(x10);
(3)x(n)=[1,-1,3,5],产生并绘出下列序列的样本:
a) x1(n)=2x(n+2)-x(n-1)-2x(n)
b)
clear all
n=1:4;
T=4;
x=[1 -1 3 5];
x(5:8)=x(1:4);
subplot(2,1,1);stem(1:8,x);grid;
for i=1:4
if i-10
x1(i)=2*x(i+2)-x(i-1)-2*x(i);
else
x1(i)=2*x(i+2)-x(i-1+T)-2*x(i);
end
end
x1(5:8)=x1(1:4);
subpl
文档评论(0)