📄 ex_7.m
字号:
%例7
clear all;
a=[1 5 6];
b=[3 0 2];
figure(1)
subplot(2,2,1),impulse(b,a)
subplot(2,2,2),impulse(b,a,5)
subplot(2,2,3),impulse(b,a,1:0.1:2)
y=impulse(b,a,1:0.1:3);
subplot(2,2,4),plot(1:0.1:3,y)
figure(2)
subplot(2,2,1),step(b,a)
subplot(2,2,2),step(b,a,5)
subplot(2,2,3),step(b,a,1:0.1:2)
y=step(b,a,1:0.1:3);
subplot(2,2,4),plot(1:0.1:3,y)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -