Main Content

rzGate

z-axis rotation gate

Since R2023a

Description

Add-On Required: This feature requires the MATLAB Support Package for Quantum Computing add-on.

g = rzGate(targetQubit,theta) applies a z-axis rotation gate to a single target qubit and returns a quantum.gate.SimpleGate object. This gate rotates the qubit state around the z-axis by an angle of theta.

  • If targetQubit and theta are vectors of the same length, rzGate returns a column vector of gates, where g(i) represents a z-axis rotation gate applied to a qubit with index targetQubit(i) with a rotation angle of theta(i).

  • If either targetQubit or theta is a scalar, and the other input is a vector, then MATLAB® expands the scalar to match the size of the vector input.

example

Examples

collapse all

Create a z-axis rotation gate that acts on a single qubit with rotation angle pi/2.

g = rzGate(1,pi/2)
g = 

  SimpleGate with properties:

             Type: "rz"
    ControlQubits: [1×0 double]
     TargetQubits: 1
           Angles: 1.5708

Get the matrix representation of the gate.

M = getMatrix(g)
M =

   0.7071 - 0.7071i   0.0000 + 0.0000i
   0.0000 + 0.0000i   0.7071 + 0.7071i

Create an array of three z-axis rotation gates. The first gate acts on qubit 1 with rotation angle pi/4, the next gate acts on qubit 2 with rotation angle pi/2, and the final gate acts on qubit 3 with rotation angle 3*pi/4.

g = rzGate(1:3,pi/4*(1:3))
g = 

  3×1 SimpleGate array with gates:

    Id   Gate   Control   Target   Angle
     1   rz               1        pi/4 
     2   rz               2        pi/2 
     3   rz               3        3pi/4

Input Arguments

collapse all

Target qubit of the gate, specified as a positive integer scalar index or vector of qubit indices.

Example: 1

Example: 3:5

Rotation angle, specified as a real scalar, real vector, string scalar, string vector, symbolic scalar, or symbolic vector. Specify the rotation angle as a vector to create an array of gates where each element of the vector corresponds to the rotation angle of one gate.

Use strings or symbolic values to specify variables for parameterized rotation angles. You can specify values for parameters when calling the simulate, getMatrix, and observe functions on a quantum circuit that contains parameterized gates. (since R2026a)

Example: pi

Example: (1:3)*pi/2

Example: ["x" "y" "z"]

More About

collapse all

Version History

Introduced in R2023a

expand all