?? latcf2df.m
字號:
function [a] = latcf2df(K)
% All-Zero Lattice form to FIR Direct form Conversion
% ---------------------------------------------------
% [a] = latcf2df(K)
% a = FIR direct form coefficients (impulse response)
% K = Lattice filter coefficients (reflection coefficients)
%
%-----------------------------------------------------------
% Copyright 2000, by Dimitris G. Manolakis, Vinay K. Ingle,
% and Stephen M. Kogon. For use with the book
% "Statistical and Adaptive Signal Processing"
% McGraw-Hill Higher Education.
%-----------------------------------------------------------
M = length(K);
J = 1; A = 1;
for m = 2:1:M
A = [A,0]+conv([0,K(m)],J);
J = fliplr(A);
end
a = A*K(1);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -