iwt_po.m
来自「SparseLab is a Matlab software package d」· M 代码 · 共 35 行
M
35 行
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 + =
减小字号Ctrl + -
显示快捷键?