how to smooth Fourier Spectrum of an acceleration-time history
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello; I would like to smooth the fourier spectrum of an acceleration-time history. The Acce-time history is attached. Can anyone help me please? Thank you.
Muhsin
0 comentarios
Respuestas (1)
Christoph F.
el 18 de Oct. de 2017
To make the spectrum appear smoother, you can either apply a window function to the signal in the time domain by element-wise multiplication (MatLab offers window functions like blackman()/hamming()/hanning()/kaiser()/triang()/etc) before calulating the Fourier transform.
Or you apply a lowpass filter to the spectrum; however, in this case you need to make sure that no frequency shifts occur, for example by using filtfilt() instead of filter or by manually compensating any shifts the filter produces. The most practicable type of filter for this task is a symmetric FIR filter with even order.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!