program_8_9.m
来自「这是国外一本经典教材附带的程序」· M 代码 · 共 9 行
M
9 行
% Program 8_9
% Simulation of FIR Cascaded Lattice Structure
%
k = input('Type in the multiplier values = ');
x0 = [1 zeros(length(k))];
[f,g] = latcfilt(k,x0);
disp('Filter Coefficients');disp(f);
disp('Mirror Image Filter Coefficients');disp(g);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?