example7_1.m
来自「用dsp解压mp3程序的算法」· M 代码 · 共 11 行
M
11 行
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Example7_1.m - program for example 7-1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
b = [1 0.5] % coefficients of the numerator
a = [1 -0.5 0.2] % coefficients of the denomerator
impz(b,a); pause; % impulse response of the H(z)
zplane(b,a); pause; % pole-zero plot
freqz(b,a); pause; % frequency response plot
grpdelay(b,a) % group delay plot
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?