What is the correct normalization for a flat top window?
Ältere Kommentare anzeigen
Hi, I have a question about FFT. Considering that I have a data vector of accelerations sampled with an accelerometer and that I want to apply a flat top window, in order to obtain the most accurate amplitude in the FFT, what would be the right code for normalization in this specific case?
I tried this one, but I'm not sure if it's correct:
N=numel(data);
w=flattopwin(N);
X=2*fft(data.*w)/sum(w);
Thanks in advance for you help.
1 Kommentar
Mathieu NOE
am 23 Apr. 2024
try with a sine wave of known amplitude for instance (amplitude = 1 could be quite convenient !)
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Spectral Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
