mindquantum.core.gates.PhaseFlipChannel
- class mindquantum.core.gates.PhaseFlipChannel(p: float, **kwargs)[源代码]
相位翻转信道。描述的噪声体现为:以 \(P\) 的概率翻转量子比特的相位(应用Z门),或以 \(1-P\) 的概率保持不变(作用I门)。
相位翻转信道的数学表示如下:
\[\epsilon(\rho) = (1 - P)\rho + P Z \rho Z\]其中,\(\rho\) 是密度矩阵形式的量子态; \(P\) 是作用额外Z门的概率。
- 参数:
p (int, float) - 发生错误的概率。
样例:
>>> from mindquantum.core.gates import PhaseFlipChannel >>> from mindquantum.core.circuit import Circuit >>> circ = Circuit() >>> circ += PhaseFlipChannel(0.02).on(0) >>> print(circ) ╔═════════════╗ q0: ──╢ PFC(p=1/50) ╟─── ╚═════════════╝