AWGN Realization

Inheritance diagram of hermespy.simulation.noise.model.AWGNRealization

AWGN realizations represent the sampling of the Gaussian distributions associated with additive white Gaussian noise (AWGN).

class AWGNRealization(power, seed)[source]

Bases: NoiseRealization

Realization of additive white Gaussian noise

Parameters:
  • power (float) – Power indicator of the noise model.

  • seed (int) – Seed for the random number generator.

add_to(signal)[source]
Parameters:

signal (Signal) – The signal to which the noise should be added.

Return type:

Signal

Returns: Signal model with added noise.