Ry operation
Namespace: Microsoft.Quantum.Intrinsic
Package: Microsoft.Quantum.QSharp.Core
Applies a rotation about the $y$-axis by a given angle.
operation Ry (theta : Double, qubit : Qubit) : Unit is Adj + Ctl
Description
\begin{align} R_y(\theta) \mathrel{:=} e^{-i \theta \sigma_y / 2} = \begin{bmatrix} \cos \frac{\theta}{2} & -\sin \frac{\theta}{2} \\ \sin \frac{\theta}{2} & \cos \frac{\theta}{2} \end{bmatrix}. \end{align}
Input
theta : Double
Angle in radians about which the qubit is to be rotated.
qubit : Qubit
Qubit to which the gate should be applied.
Output : Unit
Remarks
Equivalent to:
R(PauliY, theta, qubit);
Feedback
Submit and view feedback for