About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
OneQubitEulerDecomposer
class OneQubitEulerDecomposer(basis='U3', use_dag=False)
Bases: object
A class for decomposing 1-qubit unitaries into Euler angle rotations.
The resulting decomposition is parameterized by 3 Euler rotation angle parameters , and a phase parameter . The value of the parameters for an input unitary depends on the decomposition basis. Allowed bases and the resulting circuits are shown in the following table. Note that for the non-Euler bases (U3, U1X, RR), the ZYZ Euler parameters are used.
Basis | Euler Angle Basis | Decomposition Circuit |
---|---|---|
‘ZYZ’ | ||
‘ZXZ’ | ||
‘XYX’ | ||
‘XZX’ | ||
‘U3’ | ||
‘U321’ | ||
‘U’ | ||
‘PSX’ | ||
‘ZSX’ | ||
‘ZSXX’ | or | |
‘U1X’ | ||
‘RR’ |
Initialize decomposer
Supported bases are: ‘U’, ‘PSX’, ‘ZSXX’, ‘ZSX’, ‘U321’, ‘U3’, ‘U1X’, ‘RR’, ‘ZYZ’, ‘ZXZ’, ‘XYX’, ‘XZX’.
Parameters
- basis (str) – the decomposition basis [Default: ‘U3’]
- use_dag (bool) – If true the output from calls to the decomposer will be a
DAGCircuit
object instead ofQuantumCircuit
.
Raises
QiskitError – If input basis is not recognized.
Methods
angles
OneQubitEulerDecomposer.angles(unitary)
Return the Euler angles for input array.
Parameters
unitary (np.ndarray) – 2x2 unitary matrix.
Returns
(theta, phi, lambda).
Return type
tuple
angles_and_phase
OneQubitEulerDecomposer.angles_and_phase(unitary)
Return the Euler angles and phase for input array.
Parameters
unitary (np.ndarray) – 2x2 unitary matrix.
Returns
(theta, phi, lambda, phase).
Return type
tuple
build_circuit
OneQubitEulerDecomposer.build_circuit(gates, global_phase)
Return the circuit or dag object from a list of gates.
Attributes
basis
The decomposition basis.
Was this page helpful?
Report a bug or request content on GitHub.