信号与系统第十章习题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
第十章习题10.1
syms t phase im re;
f = sin(2*pi*t)/(2*pi*t);
Fw = fourier(f)
subplot(311);
ezplot(f);
axis([-pi pi -0.5 2]);
title('原函数波形')
subplot(312);
ezplot(abs(Fw));
title('幅度谱')
axis([-10 10 -1 2])
im = imag(Fw);
re = real(Fw);
phase = atan(im/re);
subplot(313);
ezplot(phase);
title('相位谱')
Fw =
10.2
syms t w;
F=pi*cos(w/2)/(2*((pi/2)^2-(w/2)^2));
f=ifourier(F,t)
ezplot(f);
title('时域波形')
f =
16777216/2778046668940015*2778046668940015^(1/2)*pi*(heaviside(t-
1/2)*sin(1/33554432*2778046668940015^(1/2)*(2*t-
1))+heaviside(t+1/2)*sin(1/33554432*2778046668940015^(1/2)*(2*t+1))-
cos(1/33554432*2778046668940015^(1/2))*sin(1/16777216*2778046668940015^(
10.4
dt = 0.001;
t = -2:dt:2;
f1 = Heaviside(t+1)-Heaviside(t-1);
subplot(221);
plot(t,f1)
xlabel('t');
title('f1(t)');
axis([-2 2 -0 1.1]);
f = dt*conv(f1,f1);
n = -4:dt:4;
subplot(222);
plot(n,f);
xlabel('t');
title('f(t)=f1(t)*f1(t)');
axis([-4 4 -0 2.1]);
W1 = 2*pi*5;
N = 200;
k = -N:N;
W = k*W1/N;
F1 = f1*exp(-j*t'*W)*dt;
F1 = abs(F1);
F = f*exp(-j*n'*W)*dt;
F = abs(F);
F2 = F1.*F1;
subplot(223);
plot(W,F1);
xlabel('w');
title('F1(w)的幅度频谱');
subplot(224);
plot(W,F2);
xlabel('w');
title('F(w)= F1(w)×1F(w)的幅度频谱');
axis([-20 20 0 4.1]);
axis([-20 20 0 4.1]);
f =
Columns 1 through 12
0 0 0 0 0 0 0 0 0 0 0 0 Columns 13 through 24
0 0 0 0 0 0 0 0 0 0 0 0 Columns 25 through 36
0 0 0 0 0 0 0 0 0 0 0 0 Columns 37 through 48
0 0 0 0 0 0 0 0 0 0 0 0 Columns 49 through 60
0 0 0 0 0 0 0 0 0 0 0 0 Columns 61 through 72
0 0 0 0 0 0 0 0 0 0 0 0 Columns 73 through 84
0 0 0 0 0 0 0 0 0 0 0 0 Columns 85 through 96
0 0 0 0 0 0 0 0 0 0 0 0 Columns 97 through 108
0 0 0 0 0 0 0 0 0 0 0 0 Columns 109 through 120
0 0 0 0 0 0 0 0 0 0 0 0 Columns 121 through 132
0 0 0 0 0 0 0 0 0 0 0 0 Columns 133 through 144
0 0 0 0 0 0 0 0 0 0 0 0 Columns 145 through 156
0 0 0 0 0 0 0 0 0 0 0 0 Columns 157 through 168
0 0 0 0 0 0 0 0 0 0 0 0 Columns 169 through 180
0 0 0 0 0 0 0 0 0 0 0 0 Columns 181 through 192
0 0 0 0 0 0 0 0 0 0 0 0 Columns 193 through 204
0 0 0 0 0 0 0 0 0 0 0 0 Columns 205 through 216
0 0 0 0 0 0 0 0 0 0 0 0 Columns 217 through 228
0 0 0 0 0 0 0 0 0 0 0 0 Columns 229 through 240
0 0 0 0 0 0 0 0 0 0 0 0 Columns 241 through 252
0 0 0 0 0 0 0 0 0 0 0 0 Columns 253 through 264
0 0 0 0 0 0