📄 fig7_5.m
字号:
% Figure 7.5
%
Omega = -pi:2*pi/300:pi;
X = 1./(1+0.5*exp(-j*Omega));
clf
subplot(211),plot(Omega,abs(X))
% Note, the pi's in the x-axis in the book were added manually.
ylabel('|X|')
xlabel('\Omega')
title('Figure 7.5')
subplot(212),plot(Omega,180*angle(X)/pi)
ylabel('Angle(X), degrees')
xlabel('\Omega')
subplot(111)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -