Azzera filtri
Azzera filtri

How to write equation a for X and Y

2 visualizzazioni (ultimi 30 giorni)
How to write equation a for X and Y using the below image (how to obtain X and Y)
  1 Commento
Rik
Rik il 3 Mar 2018
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?

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 3 Mar 2018
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);

Più risposte (0)

Categorie

Scopri di più su Mathematics and Optimization in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by