Power Spectral Density Plot
이전 댓글 표시
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
Swarooph
2011년 11월 18일
What function are you using exactly to do the PSD?
답변 (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.
카테고리
도움말 센터 및 File Exchange에서 Parametric Spectral Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!