www.gusucode.com > wavelet 源码程序 matlab案例代码 > wavelet/InverseMODWPTUsingDaubechiesExtremalPhaseWaveletExample.m

    %% Inverse MODWPT Using Daubechies Extremal Phase Wavelet
% Obtain the MODWPT of Southern Oscillation Index data using the Daubechies 
% extremal phase wavelet with two vanishing moments (|'db2'|). Reconstruct
% the signal using the inverse MODWPT.
load soi;
wsoi = modwpt(soi,'db2');
xrec = imodwpt(wsoi,'db2');