mindquantum.core.gates.BitPhaseFlipChannel
- class mindquantum.core.gates.BitPhaseFlipChannel(p: float, **kwargs)[source]
A bit&phase flip channel.
Bit phase flip channel express error that randomly flip both the state and phase of qubit (applies
gate) with probability , or do noting (applies gate) with probability .Bit phase flip channel applies noise as:
where
is quantum state as density matrix type; is the probability of applying an additional gate.Examples
>>> from mindquantum.core.gates import BitPhaseFlipChannel >>> from mindquantum.core.circuit import Circuit >>> circ = Circuit() >>> circ += BitPhaseFlipChannel(0.02).on(0) >>> print(circ) ╔══════════════╗ q0: ──╢ BPFC(p=1/50) ╟─── ╚══════════════╝