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

Private GIT Repository
11 oct
[these_gilles.git] / THESE / codes / wave / allcode / farras.m
1 function [af, sf] = farras
2
3 % Farras nearly symmetric filters for orthogonal
4 % 2-channel perfect reconstruction filter bank
5 %
6 % USAGE:
7 %    [af, sf] = farras
8 % OUTPUT:
9 %    af - analysis filters
10 %    sf - synthesis filters
11 % REFERENCE:
12 %    A. F. Abdelnour and I. W. Selesnick. 
13 %    "Nearly symmetric orthogonal wavelet bases",
14 %    Proc. IEEE Int. Conf. Acoust., Speech,
15 %    Signal Processing (ICASSP), May 2001.
16 % See afb, dwt.
17 %
18 % WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY
19 % http://taco.poly.edu/WaveletSoftware/
20
21 af = [
22                   0  -0.01122679215254
23                   0   0.01122679215254
24   -0.08838834764832   0.08838834764832
25    0.08838834764832   0.08838834764832
26    0.69587998903400  -0.69587998903400
27    0.69587998903400   0.69587998903400
28    0.08838834764832  -0.08838834764832
29   -0.08838834764832  -0.08838834764832
30    0.01122679215254                  0
31    0.01122679215254                  0
32 ];
33  
34 sf = af(end:-1:1, :);
35