📄 ex_4.m
字号:
%ex5 p158
clear all;
%(1)
a1=[1 3 2];
b1=1;
figure(1)
subplot(2,1,1),impulse(b1,a1),grid on
subplot(2,1,2),step(b1,a1),grid on
%(2)
a2=[1 2 2];
b2=[1 0];
figure(2)
subplot(2,1,1),impulse(b2,a2),grid on
subplot(2,1,2),step(b2,a2),grid on
%(3)
a3=[1 1 1];
b3=[1 1];
figure(3)
subplot(2,1,1),impulse(b3,a3),grid on
subplot(2,1,2),step(b3,a3),grid on
%(4)
a4=[1 0 8];
b4=[1];
figure(4)
subplot(2,1,1),impulse(b4,a4),grid on
subplot(2,1,2),step(b4,a4),grid on
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -