Effacer les filtres
Effacer les filtres

how to measure angle between the lines?

13 vues (au cours des 30 derniers jours)
BV
BV le 6 Juin 2013
Modifié(e) : MFB le 15 Avr 2019
I have plotted the lines with the following code.
x = [3 0];
y = [0 9];
line(x,y);
a = [1 2];
b = [0 3];
line(a,b);
axis([0 4 0 10]);
Now, how can I measure the angle between these lines?
  2 commentaires
Jan
Jan le 6 Juin 2013
Modifié(e) : Jan le 6 Juin 2013
The mathematical angle, the angle of the created lines in screen coordinates or the physical angle on the screen (while the last two are almost identical on modern flat screens, while they can differ substantially on arched CRT monitors)?
Do you want to "measure" the angle or to calculate it?
BV
BV le 6 Juin 2013
i wanted a way to calculate the angle.

Connectez-vous pour commenter.

Réponse acceptée

Iain
Iain le 6 Juin 2013
diff = (atan((y(2)-y(1))/(x(2)-x(1))) - atan((b(2)-b(1))/(a(2)-a(1)))) * 180/pi;
  5 commentaires
BV
BV le 6 Juin 2013
thank u very much.
MFB
MFB le 15 Avr 2019
Modifié(e) : MFB le 15 Avr 2019
difference = (atan((y(2)-x(2))/(y(1)-x(1))) - atan((b(2)-a(2))/(b(1)-a(1)))) * 180/pi;
actually this will be the correct formula arrangement if you consider x as vector points and y as vector points making a line together and a and b making a line together. Algebraically, Jan gave correct formula to calculate angle difference. Thanks.

Connectez-vous pour commenter.

Plus de réponses (1)

Paul Kelly
Paul Kelly le 6 Juin 2013
You can fit a straight line using polyval:
p = polyval(x, y, 1)
p(1) is the gradient and you can calculate the angle:
a = atan(p(1))
If you do this for each line you have two angles and can calculate the difference
Whether you mean measure or calculate (as per Jan's question) you will have to decide the coordinate system
  3 commentaires
Iain
Iain le 6 Juin 2013
"plot3" is a function that lets you plot lines in 3D.
If you are trying to find the angle between two lines, in a 3D space, then my solution is NOT the one you want. Mine only works for coplanar lines and an axis set that matches that plane.
benedikta siboro
benedikta siboro le 8 Mai 2018
I want to measure angle of human body using GUI.how i can measure?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Polar Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by