normalize
Description
normalizes the quaternion.quatNormalized
= normalize(quat
)
Given a quaternion of the form , the normalized quaternion is defined as .
Examples
Normalize Elements of Quaternion Vector
Quaternions can represent rotations when normalized. You can use normalize
to normalize a scalar, elements of a matrix, or elements of a multi-dimensional array of quaternions. Create a column vector of quaternions, then normalize them.
quatArray = quaternion([1,2,3,4; ... 2,3,4,1; ... 3,4,1,2]); quatArrayNormalized = normalize(quatArray)
quatArrayNormalized = 3x1 quaternion array
0.18257 + 0.36515i + 0.54772j + 0.7303k
0.36515 + 0.54772i + 0.7303j + 0.18257k
0.54772 + 0.7303i + 0.18257j + 0.36515k
Input Arguments
quat
— Quaternion to normalize
scalar | vector | matrix | multidimensional array
Quaternion to normalize, specified as a scalar, vector, matrix, or multidimensional array of quaternions.
Data Types: quaternion
Output Arguments
quatNormalized
— Normalized quaternion
scalar | vector | matrix | multidimensional array
Normalized quaternion, returned as a quaternion or array of quaternions
the same size as quat
.
Data Types: quaternion
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Version History
Introduced in R2021a
Open Example
You have a modified version of this example. Do you want to open this example with your edits?
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)