function c = FastPOSpinAnalysis(x, par1, par2, par3) % FastPOSynthesis -- Fast Analysis Operator for Periodized-Orthognal with cycle-spinning % Wavelets Dictionary % Usage: % c = FastPOSpinAnalysis(x, L, qmf, shifts) % Inputs % x 1-d signal; length(x) = 2^J % L Coarsest Level of V_0; L << J % qmf quadrature mirror filter (orthonormal) % Outputs % c 1-d wavelet transform of x. % % Description % 1. qmf filter may be obtained from MakeONFilter % 2. usually, length(qmf) < 2^(L+1) % % See Also % FastPOSynthesis, FWT_PO, IWT_PO, MakeONFilter % n = length(x); c = FWT_PO(x,par1,par2); for i=1:par3 c = [c FWT_PO(circshift(x,i), par1, par2)]; c = [c FWT_PO(circshift(x,-i), par1, par2)]; end c = c(:);