vote up 6 vote down star
2

Wikipedia's Wavelet article contains this text:

The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fourier transform. This computational advantage is not inherent to the transform, but reflects the choice of a logarithmic division of frequency, in contrast to the equally spaced frequency divisions of the FFT.

Does this imply that there's also an FFT-like algorithm that uses a logarithmic division of frequency instead of linear? Is it also O(N)? This would obviously be preferable for a lot of applications.

flag

It's an interesting idea. I'm not sure how useful though: would the waveforms with the logarithmic frequencies form a complete basis and if not, what use are they? (Not to say it's not useful, I really mean I'm not sure.) – tom10 Jul 14 at 2:47
I was assuming it would be similar to the FFT, but with the bins in the result logarithmically spaced. An audio spectrum analyzer, for instance, would benefit from this because it would have higher resolution at low frequencies and lower resolution at high frequencies (www-uxsup.csx.cam.ac.uk/pub/doc/…), and the higher speed of computation would allow it to refresh at a much faster rate or provide greater resolution overall. – endolith Jul 14 at 13:54
Now that I understand it better, a complex Morlet wavelet transform would probably do what I was imagining, for a spectrum analyzer, at least. – endolith Oct 14 at 21:42

1 Answer

vote up 8 vote down check

Yes. Yes. No.

It is called the Logarithmic Fourier Transform. It has O(n) time. However it is useful for functions which decay slowly with increasing domain/abscissa.

Referring back the wikipedia article:

The main difference is that wavelets are localized in both time and frequency whereas the standard Fourier transform is only localized in frequency.

So if you can be localized only in time (or space, pick your interpretation of the abscissa) then Wavelets (or discrete cosine transform) are a reasonable approach. But if you need to go on and on and on, then you need the fourier transform.

Read more about LFT at http://homepages.dias.ie/~ajones/papers/28.pdf

Here is the abstract:

"We present an exact and analytical expression for the Fourier transform of a function that has been sampled logarithmically. The procedure is significantly more efficient computationally than the fast Fourier transformation (FFT) for transforming functions or measured responses which decay slowly with increasing abscissa value. We illustrate the proposed method with an example from electromagnetic geophysics, where the scaling is often such that our logarithmic Fourier transform (LFT) should be applied. For the example chosen, we are able to obtain results that agree with those from an FFT to within 0.5 per cent in a time that is a factor of 1.0e2 shorter. Potential applications of our LFT in geophysics include conversion of wide-band electromagnetic frequency responses to transient responses, glacial loading and unloading, aquifer recharge problems, normal mode and earth tide studies in seismology, and impulsive shock wave modelling."

link|flag
Ohhh, so the time-domain signal needs to be sampled logarithmically, too? (Meaning the samples are not equally spaced in time?) – endolith Jul 13 at 18:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.