ex_7.m
来自「信号与系统分析以matlab实现」· M 代码 · 共 16 行
M
16 行
%例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 + =
减小字号Ctrl + -
显示快捷键?