PSD units conversion
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I would like to have units of V/RootHz on the Y axis. I can get Volts by removing 10*log10 from code blow, but how do I get /rootHz Code:
fs=2000;
Hs=spectrum.periodogram; % Use default values
psdest = psd(Hs,Signal,'Fs',fs);
semilogx(psdest.Frequencies,10*log10(psdest.Data));
grid on;
0 Kommentare
Akzeptierte Antwort
Wayne King
am 1 Nov. 2011
You get V^2 by removing 10*log10(), not V.
What do you mean by V/rootHz?
1 Kommentar
Guglielmo
am 26 Jan. 2012
Wait be careful.
PSD is a power so it's unit is dB re V^2/Hz (I assume the input signal is in V).
Removing dB you have V^2/Hz or with sqrt V/sqrt{Hz}.
Don't forget there is a spectral band
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Parametric Spectral Estimation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!