📄 fig9_20.m
字号:
% Figure 9.20
num = [1 1];
den = [1 20];
w = 0:.01:40;
[mag,phase] = bode(num,den,w);
clf
subplot(211),plot(w,mag);
xlabel('Frequency (rad/sec)')
ylabel('|H|')
subplot(212),plot(w,phase);
xlabel('Frequency (rad/sec)')
ylabel('Angle(H), degrees')
subplot(111)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -