p2_5.asv
来自「该程序用于讨论各种离散时间信号和系统的性质及特性。」· ASV 代码 · 共 12 行
ASV
12 行
% Program P2_5 modified
% Compute the impulse response y
clf;
N = -19:20;
x = [1 zeros(];
num = [0.9 -0.45 0.35 0.002];
den = [1 0.71 -0.46 -0.62];
y = filter(num,den,x);
% Plot the impulse response
stem(y);
xlabel('Time index n'); ylabel('Amplitude');
title('Impulse Response'); grid;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?