qiskit-documentation/docs/api/qiskit/0.30/qiskit.providers.aer.noise....

43 lines
1.4 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: phase_damping_error
description: API reference for qiskit.providers.aer.noise.phase_damping_error
in_page_toc_min_heading_level: 1
python_api_type: function
python_api_name: qiskit.providers.aer.noise.phase_damping_error
---
# qiskit.providers.aer.noise.phase\_damping\_error
<Function id="qiskit.providers.aer.noise.phase_damping_error" isDedicatedPage={true} github="https://github.com/qiskit/qiskit-aer/tree/stable/0.9/qiskit/providers/aer/noise/errors/standard_errors.py" signature="phase_damping_error(param_phase, canonical_kraus=True)">
Return a single-qubit combined phase and amplitude damping quantum error channel.
The single-qubit combined phase and amplitude damping channel is described by the following Kraus matrices:
```python
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:
```python
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](qiskit.providers.aer.noise.QuantumError "qiskit.providers.aer.noise.QuantumError")
</Function>