CY operation

Fully qualified name: Std.Canon.CY

operation CY(control : Qubit, target : Qubit) : Unit is Adj + Ctl

Summary

Applies the controlled-Y (CY) gate to a pair of qubits.

Input

control

Control qubit for the CY gate.

target

Target qubit for the CY gate.

Remarks

This operation can be simulated by the unitary matrix $$ \begin{align} \left(\begin{matrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & -i \\ 0 & 0 & i & 0 \end{matrix}\right) \end{align}, $$ where rows and columns are organized as in the quantum concepts guide.

Equivalent to:

Controlled Y([control], target);