meaning of "Input signal power" in AWGN block

8 次查看(过去 30 天)
Hi,
the AWGN block has a parameter called "Input signal power". How can the power be measured if the input is just an integer number? Can anyone give an example?
Thanks Senmeis

回答(1 个)

Sourabh
Sourabh 2025-4-25
Hey @Owen
The “Input signal power” parameter is used by the “AWGN Channel” block to determine the amount of noise to add, especially when you specify noise in terms of “Eb/No (energy per bit to noise power spectral density ratio) or “SNR” (signal-to-noise ratio).
Power is basically the “mean squared value” of the signal (assuming zero mean).
In recent releases of MATLAB, the Simulink AWGN Channel block has a parameter named “Input signal power, referenced to 1 ohm (watts)”.
Using the formula power = (voltage² / resistance), and resistance fixed to 1 ohm, the power is calculated as
Examples:
  • Input: A constant integer (e.g., all 1s),
  • Then, Power = 1² = 1 watt
  • Input: Alternating between +1 and -1 (BPSK),
  • Then, Power = (1² + (-1)²)/2 = 1 watt
  • Input: Range from 0 to 3 (like symbol levels in 4-PAM),
  • Then, Power = mean([0², 1², 2², 3²]) = (0+1+4+9)/4 = 3.5 watts
For more information, kindly refer the following MATLAB documentation resources:
I hope this helps!

类别

Help CenterFile Exchange 中查找有关 Propagation and Channel Models 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by