周期信号的频谱分析
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
信号与系统
实验报告
实验三周期信号得频谱分析
实验报告评分:_______
实验三周期信号得频谱分析
实验目得:
1、掌握连续时间周期信号得傅里叶级数得物理意义与分析方法;
2、观察截短傅里叶级数而产生得“Gibbs现象”,了解其特点以及产生得原因;
3、掌握各种典型得连续时间非周期信号得频谱特征。
实验内容:
(1)Q3-1 编写程序Q3_1,绘制下面得信号得波形图:
其中,0 = 0、5π,要求将一个图形窗口分割成四个子图,分别绘制cos(0t)、cos(30t)、cos(50t)与x(t)得波形图,给图形加title,网格线与x坐标标签,并且程序能够接受从键盘输入得与式中得项数。
程序如下:
clear,%Clear allvariables
close all,%Close allfigure windows
dt= 0、00001; %Specify the step of time var iable
t =-2:dt:4;%Specify theinterval of
time
w0=0、5*pi; x1=cos(w0、*t); x2=cos(3*w0、*t); x3=cos(5*w0、*t);
N=input('Type in the number of the harmonic ponentsN=');
x=0;
for q=1:N;
x=x+(sin(q*(pi/2))、*cos(q*w0*t))/q;
end
subplot(221)
plot(t,x1)%Plot x1
axis([-2 4 -2 2]);
grid on,
title('signal cos(w0、*t)')
subplot(222)
plot(t,x2)%Plotx2
axis([-2 4 -2 2]); grid on,
title('signal cos(3*w0、*t))')
subplot(223)
plot(t,x3)%Plot x3
axis([-2 4 -22])
grid on,
title('signal cos(5*w0、*t))')subplot(224)
plot(t,x)%Plotxt
axis([-2 4 -2 2])
gridon,
title('signal xt')
(2)给程序3_1增加适当得语句,并以Q3_2存盘,使之能够计算例题1中得周期方波信号得傅里叶级数得系数,并绘制出信号得幅度谱与相位谱得谱线图。
程序如下:
% Program3_1clear, close all
T = 2;
dt =0、00001;
t= -2:dt:2;
x1 = ut(t) -ut(t-1-dt);
x = 0;
for m =-1:1
x = x + ut(t-m*T) - ut(t-1-m*T-dt);
end
w0 = 2*pi/T;
N = 10;
L = 2*N+1;
for k = -N: N;
ak(N+1+k) =(1/T)*x1*exp(-j*k*w0*t')*dt; end
phi = angle(ak);
subplot(211)'
k = -10:10;
stem (k,abs(ak),'k');
axis([-10,10,0,0、6]);
grid on;
title('fudupu');
subplot(212);
k = -10:10
stem(k,angle(ak),'k');
axis([-10,10,-2,2]);
grid on;
titie('xiangweipu');
xlabel('Frequency index x');
(3)反复执行程序Program3_2,每次执行该程序时,输入不同得N值,并观察所合成得周期方波信号。通过观察,您了解得吉伯斯现象得特点就是:
程序如下:
clear,close all
T = 2;
dt = 0、00001;
t = -2:dt:2;
x1= ut(t)-ut(t-1-dt);
x = 0; for m = -1:1
x = x + ut(t-m*T) - ut(t-1-m*T-dt);
end
w0 = 2*pi/T;
N = input('Type in the number of the harmonic ponents N =:');
L = 2*N+1;
for k =-N:1:N;
ak(N+1+k) = (1/T)*x1*exp(-j*k*w0*t')*dt;
end
phi= angle(ak);
y=0;
for q = 1:L;
y = y+ak(q)*exp(j*(-(L-1)/2+q-1)*2*pi*t/T);end;
subplot(221),
plot(t,x),
title('The original signal x(t)'),
axis([-2,2,-0、2,1、2]),
subplot(223),
plot(t,y),
title('The synthesis signal y(t)'),
axis([-2,2,-0、2,1、2]),
xlabel('Time t'),
subplot(222)
k=-N:N;
stem(k,abs(ak),'k、'),
title('The amplitude |ak| ofx(t)'),
axis([-N,N,-0、1,0、6])
subplot(224)
stem(k,phi,'r、'),
title('The phasephi(k) of x(t)'),
axis([-N,N,-2,2]),
xlabel('Index k')
N=1