필터 지우기
필터 지우기

Other ways to improve fft amplitude

조회 수: 2 (최근 30일)
Claudio Gerosa
Claudio Gerosa 2024년 4월 24일
댓글: Star Strider 2024년 4월 24일
Are there any other ways to improve the amplitude accuracy of fft, other than filtering the signal and using a flat top window, which I've already tried? Thank you in advance.

채택된 답변

Star Strider
Star Strider 2024년 4월 24일
Another option may be to zero-pad the fft using:
Fs = signal_sampling_frequency
L = signal_length;
NFFT = 2^nextpow2(L)
FTsignal = fft(signal.*window, NFFT)/sum(window)
Fv = Fs*(0:(NFFT/2))/NFFT; % Frequency Vector
or something similar.
Increase ‘NFFT’ by powers-of-2 (for the most efficient results) to increase the frequency resolution of the result. This may reduce spectral leakage, since that may also improve the amplitude (magnitude) estimation. Experiment with this to see if it works in your situation.
  댓글 수: 4
Claudio Gerosa
Claudio Gerosa 2024년 4월 24일
Thank you very much.
Star Strider
Star Strider 2024년 4월 24일
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by