Power Spectral Density Estimates Using FFT
조회 수: 5 (최근 30일)
이전 댓글 표시
In the code example, psdx = (1/(Fs*N)) * abs(xdft).^2;
why isn't it instead (Fs/N) such that psdx = (Fs/N) * abs(xdft).^2? Isn't the period equal to the length of the signal, which is N, multiplied by the sampling interval, which is 1/Fs ?
댓글 수: 0
답변 (1개)
Jeremy
2015년 6월 18일
There are different ways of looking at it but the PSD is often written as:
(fft*conj(fft))/(bin_width*NFFT^2)
(fft*conj(fft)) = abs(fft) and bin_width = Fs/NFFT, so you can see how it reduces down.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spectral Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!