フィルターのクリア

Power estimation using PWelch

7 ビュー (過去 30 日間)
mahesh subramanyam
mahesh subramanyam 2020 年 12 月 14 日
回答済み: Star Strider 2020 年 12 月 14 日
I have the psd estimate using the Pwelch function in Matlab. I need to convert the PSD values from db/Hz to abosute power to dBm. The understanding that I have is from the PSD value at a particular frequency point do the following.
Power at frequency point=PSD value@ freq point+10*log10(frequency resolution)
Do we also have to add the correction factor for the windowing to get the absolute power?

採用された回答

Star Strider
Star Strider 2020 年 12 月 14 日
If you want the power spectrum as simple uints of power as a function of frequency, use the fft function. To convert amplitude to power, square the signal either before or after doing the fft on it. To convert the power values to decibels:
pwr = amplitude.^2;
dBpwr = 10*log10(pwr);
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParametric Spectral Estimation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by