Windowed FFT magnitude / leakage effect
3 views (last 30 days)
Show older comments
Hello,
i am doing an windowed fft to get the magnitude by a frequency.
But the result of the magnitude is not the magnitude of the sampled summation of sinusfunction, which i defined.
This effect is the leakage effect and i heard about a correction factor to get the right magnitude from the windowed fft.
Thank you for help!
0 Comments
Answers (1)
Samatha Aleti
on 17 Jul 2019
Hi,
You may calculate & apply Amplitude correction factor to compensate the leakage effect. Here is an example
N= 100;
w = hann(N);
% correction factor
Cf=length(w)/sum(w);
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!