wyh rotation matrix convert to eular angle is not same with original eular?
1 次查看(过去 30 天)
显示 更早的评论
At the beginning,i use eul2rotm function to convert eular degree to rotation matrix,then use rotm2eul function convert to back ,but it not same as before,why it occur like this result,i don't it understand. Thanks in advance!
eular1 = [pi/2,pi,-pi/2] % ZYX default order
r = eul2rotm(eular1,'ZYX');
eular2 = rotm2eul(r,'ZYX')
eular2 is not same eular1?
0 个评论
采纳的回答
Matt J
2022-5-10
编辑:Matt J
2022-5-10
It is the same, because eul2rotm is not a 1-1 function.
eular1 = [pi/2,pi,-pi/2]; % ZYX default order
r = eul2rotm(eular1,'ZYX')
eular2 = rotm2eul(r,'ZYX');
r2=eul2rotm(eular2,'ZYX')
7 个评论
Sam Chak
2022-10-29
编辑:Sam Chak
2022-10-29
You must apply the torque to rotate from one orientation to another. To achieve the minimum rotation, this implies that you need to apply the minimum torque.
You can derive a formula to compute the optimal torque needed, through the rigorous mathematics route.
Or you can take the AI/ML route to automatically find just the right torque, with a click of a button without knowing the math of the system and the torque actuator. You need to define the Cost/Objective Function though.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Inertias and Loads 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!