]> AND Private Git Repository - these_gilles.git/blob - THESE/codes/wave/allcode/idwt.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
modif finale lnivs + keywords
[these_gilles.git] / THESE / codes / wave / allcode / idwt.m
1 function y = idwt(w, J, sf)
2
3 % Inverse Discrete 1-D Wavelet Transform
4 %
5 % USAGE:
6 %    y = idwt(w, J, sf)
7 % INPUT:
8 %    w - wavelet coefficients
9 %    J - number of stages
10 %    sf - synthesis filters
11 % OUTPUT:
12 %    y - output signal
13 % See also dwt
14 %
15 % WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY
16 % http://taco.poly.edu/WaveletSoftware/
17
18 y = w{J+1};
19 for k = J:-1:1
20    y = sfb(y, w{k}, sf);
21 end
22