필터 지우기
필터 지우기

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?

조회 수: 2 (최근 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
Matt J
Matt J 2022년 5월 16일
I've no way of "making" the origin whatI want. You're the one who defined the origins in your origins.mat file.
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