📄 iwt_po.m
字号:
function x = IWT_PO(wc,L,qmf)% IWT_PO -- Inverse Wavelet Transform (periodized, orthogonal)% Usage% x = IWT_PO(wc,L,qmf)% Inputs% wc 1-d wavelet transform: length(wc) = 2^J.% L Coarsest scale (2^(-L) = scale of V_0); L << J;% qmf quadrature mirror filter% Outputs% x 1-d signal reconstructed from wc%% Description% Suppose wc = FWT_PO(x,L,qmf) where qmf is an orthonormal quad. mirror% filter, e.g. one made by MakeONFilter. Then x can be reconstructed by% x = IWT_PO(wc,L,qmf)%% See Also% FWT_PO, MakeONFilter% wcoef = ShapeAsRow(wc); x = wcoef(1:2^L); [n,J] = dyadlength(wcoef); for j=L:J-1 x = UpDyadLo(x,qmf) + UpDyadHi(wcoef(dyad(j)),qmf) ; end x = ShapeLike(x,wc);%% Part of SparseLab Version:100% Created Tuesday March 28, 2006% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail sparselab@stanford.edu%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -