I would like to use the bandpassing function that is available in newer versions of Mathematica but not Mathematica 8:
BANDPASSALPHA[x_] :=
BandpassFilter[x, {8 Pi, 13 Pi}, SampleRate -> 500]
Is there a pice of custom code that would allow me to do this?
Fourier, a window andInverseFourier. If you want to use specific FIR/IIR filters with certain guarantees of performance in the pass/stop bands, then you're going to have to write a lot of the code yourself. If you have access to MATLAB (and the DSP toolbox), then I suggest using the functions from it in Mathematica 8. – rm -rf Sep 15 '14 at 00:07