Quaternion unary minus
mQuat = -quat
example
mQuat = -quat negates the elements of quat and stores the result in mQuat.
mQuat
quat
collapse all
Unary minus negates each part of a the quaternion. Create a 2-by-2 matrix, Q.
Q
Q = quaternion(randn(2),randn(2),randn(2),randn(2))
Q=2×2 quaternion array 0.53767 + 0.31877i + 3.5784j + 0.7254k -2.2588 - 0.43359i - 1.3499j + 0.71474k 1.8339 - 1.3077i + 2.7694j - 0.063055k 0.86217 + 0.34262i + 3.0349j - 0.20497k
Negate the parts of each quaternion in Q.
R = -Q
R=2×2 quaternion array -0.53767 - 0.31877i - 3.5784j - 0.7254k 2.2588 + 0.43359i + 1.3499j - 0.71474k -1.8339 + 1.3077i - 2.7694j + 0.063055k -0.86217 - 0.34262i - 3.0349j + 0.20497k
Quaternion array, specified as a scalar, vector, matrix, or multidimensional array.
Data Types: quaternion
quaternion
Negated quaternion array, returned as the same size as quat.
minus, -
You have a modified version of this example. Do you want to open this example with your edits?