Power Spectral Density Plot
3 次查看(过去 30 天)
显示 更早的评论
I would like to have the Y axis units of the Power spectral densty plot show up as V/sqrt(Hz). The default way that they show up is dB/Hz
回答(1 个)
Naz
2011-11-19
If you are using periodogram function without outputs, then it plots dB/Hz. However, if you do:
[Pxx,w] = periodogram(...);
plot(w,Pxx);
then you should get Pxx as power per radians per sample.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parametric Spectral Estimation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!