?? program_08_08.m
字號(hào):
% Program 8_8
% Simulation of IIR Cascaded Lattice Structure
%
k = input('Type in the lattice multiplier coefficients = ');
alpha = input('Type in the feed-forward multiplers = ');
x = [1 zeros(1,2*length(k))];
[f,g] = latcfilt(k,alpha,x);
% Verify the structure
[p,d] = strucver(f,length(k));
disp('Actual numerator coefficients are '); disp(p');
disp('Actual denominator coefficients are '); disp(d');
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -