Quil-T
API Reference
pyquil.gates.
RY
Produces the RY gate:
RY(phi) = [[cos(phi / 2), -sin(phi / 2)], [sin(phi / 2), cos(phi / 2)]]
This gate is a single qubit Y-rotation.
angle (Union[Expression, MemoryReference, int64, int, float, complex]) – The angle to rotate around the y-axis on the bloch sphere.
Union
Expression
MemoryReference
int64
int
float
complex
qubit (Union[Qubit, QubitPlaceholder, FormalArgument, int]) – The qubit apply the gate to.
Qubit
QubitPlaceholder
FormalArgument
Gate
A Gate object.