mindquantum.core.gates.PhaseFlipChannel
- class mindquantum.core.gates.PhaseFlipChannel(p: float, **kwargs)[source]
A phase flip channel.
Phase flip channel express error that randomly flip the phase of qubit (applies Z gate) with probability
, or do noting (applies I gate) with probability .Phase flip channel applies noise as:
where
is quantum state as density matrix type; is the probability of applying an additional Z gate.Examples
>>> 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) ╟─── ╚═════════════╝