How to formulate 2D frames if I have the origin of the frames (x, y) and the inclination angle of the frame with respect to the x-axis?

1 次查看(过去 30 天)
How to formulate 2D frames if I have the origin of the frames (x, y) and the inclination angle of the frame with respect to the x-axis? Then I need to compute the transformation matrix of the frames w.r.t the reference frame (which is normal x and y directions)??
The attached files are the origins and the corrosponding angles.

采纳的回答

Matt J
Matt J 2022-5-13
编辑:Matt J 2022-5-13
T=makehgtform('translate',[x,y,0],...
'zrotate',angleDegrees*pi/180, ...
'translate',[-x0,-y0,0]);
T=T([1,2,4],[1,2,4]); %transformation matrix
  10 个评论
M
M 2022-5-16
编辑:M 2022-5-16
@Matt J Ok, but my question why did you choose the first origin in the .mat file to make it the reference, then you translate other origins to that origin ?
Also, Could you please tell me what does the fourth column in the transformation matrix represents?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by