Computation of Signal power

2 ビュー (過去 30 日間)
Jayant chouragade
Jayant chouragade 2020 年 10 月 29 日
コメント済み: Sindar 2020 年 10 月 30 日
Hi,
I am bit confused in computing power of a guassian pulse modulated signal.
Fc=50e6;
t=0:1/Fs:255/Fs;
tau1=400e-9;
tau2=80e-9;
St=sin(2*pi*Fc*t).*exp(-4*pi*(((t-tau1)/tau2).^2));
At present I am computing power as below:
Power=mean(St.^2,2);
Is it right? or am missing something.
Looking forward to your comments and suggestions.
  1 件のコメント
Sindar
Sindar 2020 年 10 月 30 日
Definitions of power vary by field. A few things:
  • currently, your power will change if you alter sampling rate. This should fix that:
Power=mean(St.^2,2)/Fs^2;
  • sometimes, "power" means total energy, not energy per time. Use sum in that case
  • This signal is effectively zero for most of it's duration. If this is a single pulse (vs a periodic signal), average energy depends on your choice of sampling duration

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by