function [af, sf] = FSfarras % Farras filters organized for the dual-tree % complex DWT. % % USAGE: % [af, sf] = FSfarras % OUTPUT: % af{i}, i = 1,2 - analysis filters for tree i % sf{i}, i = 1,2 - synthesis filters for tree i % See farras, dualtree, dualfilt1. % % WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY % http://taco.poly.edu/WaveletSoftware/ af{1} = [ 0 0 -0.08838834764832 -0.01122679215254 0.08838834764832 0.01122679215254 0.69587998903400 0.08838834764832 0.69587998903400 0.08838834764832 0.08838834764832 -0.69587998903400 -0.08838834764832 0.69587998903400 0.01122679215254 -0.08838834764832 0.01122679215254 -0.08838834764832 0 0 ]; sf{1} = af{1}(end:-1:1, :); af{2} = [ 0.01122679215254 0 0.01122679215254 0 -0.08838834764832 -0.08838834764832 0.08838834764832 -0.08838834764832 0.69587998903400 0.69587998903400 0.69587998903400 -0.69587998903400 0.08838834764832 0.08838834764832 -0.08838834764832 0.08838834764832 0 0.01122679215254 0 -0.01122679215254 ]; sf{2} = af{2}(end:-1:1, :);