⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program_8_8.m

📁 这是国外一本经典教材附带的程序
💻 M
字号:
% Program 8_8
% Simulation of IIR Cascaded Lattice Structure
%
k =3D input('Type in the lattice multiplier coefficients =3D ');
alpha =3D input('Type in the feed-forward multiplers =3D ');
x =3D [1 zeros(1,2*length(k))];
[f,g] =3D latcfilt(k,alpha,x);
% Verify the structure
[p,d] =3D strucver(f,length(k));
disp('Actual numerator coefficients are '); disp(p');
disp('Actual denominator coefficients are '); =
disp(d');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -