About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
qiskit_aer.noise.phase_damping_error
phase_damping_error(param_phase, canonical_kraus=True)
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
Was this page helpful?
Report a bug or request content on GitHub.