STFT result - what is the amplitude?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I would like to ask how to interpet the result figure of the stft(x,fs,..) function?
The magnitude value in dB does not fit to the amplitudes that I get from the fft analysis.
Thanks in advance.
0 comentarios
Respuestas (1)
Pratyush Roy
el 20 de En. de 2022
Hi Przemyslaw,
STFT is different from FFT since the former tries to answer what frequency component is present in a sginal and at what instant whereas the latter only tries to answer what frequency component is present. Hence STFT tries to break down the entire signal into overlapping frames(e.g., in the command mentioned above 50 is the overlap length), performs weighing individual signal points with a window function(Hamming as mentioned in the above command) to avoid spectral leakage, and then perform FFT on individual frames. Here the transform length is equal to the length of the frame, as comapred to FFT where the transform length is the length of the entire signal.
Hence windowing and variable transform length might be responsible for the result to be different from FFT magnitude,
Hope this helps!
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!