qiskit.quantum_info.Quaternion¶
-
class
Quaternion
(data)[소스]¶ A class representing a Quaternion.
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)[소스]¶ Return quaternion for rotation about given axis.
- 매개변수
angle (float) – Angle in radians.
axis (str) – Axis for rotation
- 반환값
Quaternion for axis rotation.
- 반환 형식
- 예외
ValueError – Invalid input axis.
-
classmethod
from_euler
(angles, order='yzy')[소스]¶ Generate a quaternion from a set of Euler angles.
- 매개변수
angles (array_like) – Array of Euler angles.
order (str) – Order of Euler rotations. ‘yzy’ is default.
- 반환값
Quaternion representation of Euler rotation.
- 반환 형식
-
normalize
(inplace=False)[소스]¶ Normalizes a Quaternion to unit length so that it represents a valid rotation.
- 매개변수
inplace (bool) – Do an inplace normalization.
- 반환값
Normalized quaternion.
- 반환 형식
-
classmethod