Receive Realization

Inheritance diagram of hermespy.simulation.simulated_device.SimulatedDeviceReceiveRealization
class SimulatedDeviceReceiveRealization(noise_realization)[source]

Bases: Serializable

Realization of a simulated device reception random process.

Parameters:

noise_realization (NoiseRealization) – Noise realizations for each receive operator.

classmethod Deserialize(process)[source]

Deserialize an object’s state.

Objects cannot be deserialized directly, instead a Factory must be instructed to carry out the deserialization process.

Parameters:

process (DeserializationProcess) – The current stage of the deserialization process. This object is generated by the Factory and provides an interface to deserialization methods supporting multiple backends.

Return type:

SimulatedDeviceReceiveRealization

Returns:

The deserialized object.

serialize(process)[source]

Serialize this object’s state.

Objects cannot be serialized directly, instead a Factory must be instructed to carry out the serialization process.

Parameters:

process (SerializationProcess) – The current stage of the serialization process. This object is generated by the Factory and provides an interface to serialization methods supporting multiple backends.

Return type:

None

property noise_realization: NoiseRealization

Receive operator noise realizations.

Returns: Sequence of noise realizations corresponding to the number of registerd receive operators.