Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

qiskit.providers.aer.noise.phase_damping_error

phase_damping_error(param_phase, canonical_kraus=True)

GitHub

Return a single-qubit generalized phase damping quantum error channel.

The single-qubit phase damping channel is described by the following Kraus matrices:

A0 = [[1, 0], [0, sqrt(1 - b)]]
A2 = [[0, 0], [0, sqrt(b)]]

where b = param_phase. The equilibrium state after infinitely many applications of the channel is:

rho_eq = [[rho_init[0, 0], 0]], [0, rho_init[1, 1]]]

where rho_init is the input state ρ.

Parameters

  • param_phase (double) – the phase damping parameter.
  • canonical_kraus (bool) – Convert input Kraus matrices into the canonical Kraus representation (default: True)

Returns

a quantum error object for a noise model.

Return type

QuantumError

Was this page helpful?
Report a bug or request content on GitHub.