How to write equation a for X and Y

2 次查看(过去 30 天)
How to write equation a for X and Y using the below image (how to obtain X and Y)
  1 个评论
Rik
Rik 2018-3-3
I don't understand the constraints of your question, nor what makes this a Matlab question. You have a direct equation to obtain X and Y, so what is your problem?

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2018-3-3
Try this:
xy = [xj-xi; yj-yi];
rotationMatrix = [cos(theta), sin(theta); sin(theta), -cos(theta)]
XY = rotationMatrix * xy;
X = XY(1);
Y = XY(2);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics and Optimization 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by