how to smooth Fourier Spectrum of an acceleration-time history
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Christoph F.
2017-10-18
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!