How to formulate the following matrices?
1 次查看(过去 30 天)
显示 更早的评论
How to formulate the following matrices? (which is called the transformation matrices)
Theta is the degree angle which stored in file 'Angles' ,,, x,y is the origins which stored in file origin
T = [cos(theta(i)) -sin(theta(i)) x(i)
sin(theta(i)) cos(theta(i)) y(i)
0 0 1]
2 个评论
Image Analyst
2022-5-18
编辑:Image Analyst
2022-5-18
You formulated a matrix T. What's the problem? Explain in more detail after reading this:
For example you might include a diagram to show what needs to be rotated.
FYI
采纳的回答
Matt J
2022-5-18
T=makehgtform('translate',[x(i),y(i),0],'zrotate',theta(i));
T=T([1,2,4],[1,2,4])
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!