I would like to evaluate power spectrum (amplitude) changes in several tens of seconds length sound record, only on some chosen frequencies. The sound has spectrum like this (mobile phone app analysation):
I want to plot time changes in only some separate frequences, e.g. on 4kHz and 8kHz, as the time curves. No spectragraph.
Example: The sound has 30 second in length. I want to get power spectrum by FFT, take only frequencies on 4kHz and 8kHz and get two separate curves in one figure of apmlitudes on 4kHz and 8kHz in time.
How would I do that in Matlab?
You'll use some sort of sliding window, where
PS(f, t)
is elementf
from the DFT performed on a block of samples centered ont
. The window size will determine the resolution in the frequency domain. (is power at 3.98 kHz included in the trace for 4 kHz?)No, you don't. Direct computation of the DFT/GDFT for two frequencies is much faster than computing the entire FFT.
Also, you can apply the Fourier Transform identity for time shifts to update the GDFT instead of recalculating it at each time step. You apply the time shift, add in the sample entering the window, and subtract out the one leaving.
Total complexity using
fft
and sliding window:O(N * w * lg w)
wherew
is the window size. Total complexity using GDFT and time shift:O(c * N)
wherec
is the count of frequencies you care about.The constant is similar in both cases, so you really want to use the second whenever
c < w * lg w
.Don't forget to take the magnitude (
abs
function) before graphing.