【发布时间】:2017-09-06 01:13:09
【问题描述】:
伙计们,我正在学习如何使用 matlab 计算信号的 PSD。我知道函数Periodogram() 效果很好,但我想直接使用fft 方法。当我想详细学习时,我发现这个网站很有帮助:
https://www.mathworks.com/help/signal/ug/power-spectral-density-estimates-using-fft.html
但是,我在第一个示例中遇到了问题。我对这个说法有点困惑
psdx = (1/(Fs*N)) * abs(xdft).^2;
不知道为什么要用Fs和N作为参数。
【问题讨论】:
标签: matlab signals fft spectrum