meaning of "Input signal power" in AWGN block

8 views (last 30 days)
Owen
Owen on 8 Nov 2012
Answered: Sourabh on 25 Apr 2025
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

Answers (1)

Sourabh
Sourabh on 25 Apr 2025
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!

Categories

Find more on Propagation and Channel Models in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!