Main Content

rotvecd

Convert quaternion to rotation vector (degrees)

Description

example

rotationVector = rotvecd(quat) converts the quaternion array, quat, to an N-by-3 matrix of equivalent rotation vectors in degrees. The elements of quat are normalized before conversion.

Examples

collapse all

Convert a random quaternion scalar to a rotation vector in degrees.

quat = quaternion(randn(1,4));
rotvecd(quat)
ans = 1×3

   96.6345 -119.0274   45.4312

Input Arguments

collapse all

Quaternion to convert, specified as a quaternion object or an array of quaternion objects of any dimensionality.

Output Arguments

collapse all

Rotation vector representation, in degrees, returned as an N-by-3 numeric matrix of rotation vectors, where N is the number of quaternions in the quat argument.

Each row represents the [X Y Z] angles of the rotation vectors in degrees. The ith row of rotationVector corresponds to the element quat(i).

The data type of the rotation vector is the same as the underlying data type of quat.

Data Types: single | double

Algorithms

All rotations in 3-D can be represented by four elements: a three-element axis of rotation and a rotation angle. If the rotation axis is constrained to be unit length, the rotation angle can be distributed over the vector elements to reduce the representation to three elements.

Recall that a quaternion can be represented in axis-angle form

q=cos(θ2)+sin(θ2)(xi+yj+zk),

where θ is the angle of rotation in degrees, and [x,y,z] represent the axis of rotation.

Given a quaternion of the form

q=a+bi+cj+dk,

you can solve for the rotation angle using the axis-angle form of quaternions:

θ=2cos1(a).

Assuming a normalized axis, you can rewrite the quaternion as a rotation vector without loss of information by distributing θ over the parts b, c, and d. The rotation vector representation of q is

qrv=θsin(θ2)[b,c,d].

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced in R2018b