3D Rotation Matrix

260 次查看(过去 30 天)
N/A
N/A 2017-7-24
评论: Alec 2019-10-23
Hi all, I'm new here and am trying to obtain a 3D rotation matrix.
Currently, I have a set of n points: (x1,y1,z1), (x2,y2,z2)...(xn,yn,zn)
from which I have designated one particular point as the origin, and obtained an x'- and y'- vector, based on some features. It is unimportant, for this question, how I chose my origin and got the x'- and y' vector. From the x'- and y' vector, I can also obtain the z'-vector by taking cross product of x' and y'.
Now, I would like to rotate all these points about the origin I have defined, such that the x'-, y'- and z'- vectors are in line with the x-, y- and z- axes respectively.
Hence, I am looking for a 3x3 rotation matrix, R, that can be applied to all points such that:
Transformed (x,y,z) = R * Original (x,y,z)
An example of the vectors to be mapped would be say:
x': [-0.2831, -0.9246, 0.2548]' to be mapped to x: [1 0 0]
y': [0.9242, -0.1919, 0.3303]' to be mapped to y: [0 1 0]
z' will be mapped automatically if the above 2 are satisfied.
Thank you for your help!

采纳的回答

Honglei Chen
Honglei Chen 2017-7-24
I'm not sure if I fully follow your question, but here is my understanding. The first step is to find the coordinates of all points in the new coordinate system. For that you'll have to first subtract origin from all points and then convert all points to the local coordinate system. That conversion matrix should just be R1 = [x' y' z']'. If you have access to Phased Array System Toolbox, you can consider using the following function
You can then rotate the points in the new coordinate system using Euler matrices. If you want again you can use the following functions:
HTH

更多回答(1 个)

Herve Hugonnet
Herve Hugonnet 2019-6-20
The simplest if you do not have the phase array system toolbox is to define anonymous functions :
rotx = @(t) [1 0 0; 0 cos(t) -sin(t) ; 0 sin(t) cos(t)] ;
roty = @(t) [cos(t) 0 sin(t) ; 0 1 0 ; -sin(t) 0 cos(t)] ;
rotz = @(t) [cos(t) -sin(t) 0 ; sin(t) cos(t) 0 ; 0 0 1] ;

类别

Help CenterFile Exchange 中查找有关 Motion Modeling and Coordinate Systems 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by