Quil-T
API Reference
pyquil.gates.
RZ
Produces the RZ gate:
RZ(phi) = [[cos(phi / 2) - 1j * sin(phi / 2), 0] [0, cos(phi / 2) + 1j * sin(phi / 2)]]
This gate is a single qubit Z-rotation.
angle (Union[Expression, MemoryReference, int64, int, float, complex]) – The angle to rotate around the z-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.