dspdata display units for spectrum

How can I change dspdata spectrum units, its in dB (dB/Hz for PSD), I would like the spectrum in real units.

 채택된 답변

Honglei Chen
Honglei Chen 2013년 6월 18일

0 개 추천

The data itself is saved in linear scale, not dB scale. It is only the plotting that displays the value in dB scale. You can try the following:
h = psd(spectrum.periodogram,randn(1024,1));
plot(h.Frequencies,h.Data);
This way the yaxis is in linear scale.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기

질문:

2013년 6월 18일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by