qiskit.quantum_info.Quaternion¶
-
class
Quaternion
(data)[código fonte]¶ A class representing a Quaternion.
-
__init__
(data)[código fonte]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(data)Initialize self.
from_axis_rotation
(angle, axis)Return quaternion for rotation about given axis.
from_euler
(angles[, order])Generate a quaternion from a set of Euler angles.
norm
()Norm of quaternion.
normalize
([inplace])Normalizes a Quaternion to unit length so that it represents a valid rotation.
Converts a unit-length quaternion to a rotation matrix.
to_zyz
()Converts a unit-length quaternion to a sequence of ZYZ Euler angles.
-
classmethod
from_axis_rotation
(angle, axis)[código fonte]¶ Return quaternion for rotation about given axis.
- Parâmetros
angle (float) – Angle in radians.
axis (str) – Axis for rotation
- Retorna
Quaternion for axis rotation.
- Tipo de retorno
- Levanta
ValueError – Invalid input axis.
-
classmethod
from_euler
(angles, order='yzy')[código fonte]¶ Generate a quaternion from a set of Euler angles.
- Parâmetros
angles (array_like) – Array of Euler angles.
order (str) – Order of Euler rotations. ‘yzy’ is default.
- Retorna
Quaternion representation of Euler rotation.
- Tipo de retorno
-
norm
()[código fonte]¶ Norm of quaternion.
-
normalize
(inplace=False)[código fonte]¶ Normalizes a Quaternion to unit length so that it represents a valid rotation.
- Parâmetros
inplace (bool) – Do an inplace normalization.
- Retorna
Normalized quaternion.
- Tipo de retorno
-
to_matrix
()[código fonte]¶ Converts a unit-length quaternion to a rotation matrix.
- Retorna
Rotation matrix.
- Tipo de retorno
ndarray
-
to_zyz
()[código fonte]¶ Converts a unit-length quaternion to a sequence of ZYZ Euler angles.
- Retorna
Array of Euler angles.
- Tipo de retorno
ndarray
-