?? program_11_9.m
字號:
% Program 11_9
% Simulation of FIR Cascaded Lattice Structure
%
k = input('Type in the multiplier values = ');
x0 = [1 zeros(1,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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -