次の方法で共有


Ry 操作

完全修飾名: Std.Intrinsic.Ry

operation Ry(theta : Double, qubit : Qubit) : Unit is Adj + Ctl

概要

y軸を指定した角度で回転させます。

インプット

シータ

量子ビットを回転させる角度。

qubit

ゲートを適用する量子ビット。

備考

$$ \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} $$

次に相当します。

R(PauliY, theta, qubit);