What is the correct normalization for a flat top window?
Afficher commentaires plus anciens
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 commentaire
Mathieu NOE
le 23 Avr 2024
try with a sine wave of known amplitude for instance (amplitude = 1 could be quite convenient !)
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Spectral Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
