How to find angle between two lines?

165 visualizaciones (últimos 30 días)
Beulah A
Beulah A el 21 de Oct. de 2019
Movida: Dyuman Joshi el 9 de En. de 2024
For example, there is line L1 between two points (x1,y1) and (x2,y2). Another line L2 between points (x1,y1) and (x3,y3). I want to find the angle between the lines L1, L2. How to find in MATLAB? I think in matlab there is no predefined function which performs the same.
  2 comentarios
sudeep
sudeep el 7 de En. de 2024
Movida: Dyuman Joshi el 9 de En. de 2024
TURE AND
Example 1: Find the angle between r1 = 2(1 + cost) and r23(1-cost) and plot the graph for the same.

Iniciar sesión para comentar.

Respuesta aceptada

Bjorn Gustavsson
Bjorn Gustavsson el 21 de Oct. de 2019
A more stable method that what Jos suggested is
v_1 = [x2,y2,0] - [x1,y1,0];
v_2 = [x3,y3,0] - [x1,y1,0];
Theta = atan2(norm(cross(v_1, v_2)), dot(v_1, v_2));
HTH
  3 comentarios
jari jafri
jari jafri el 4 de Oct. de 2023
Editada: jari jafri el 4 de Oct. de 2023
I got my V_1 and V_2 vectors as
v_1 =
1×3 int32 row vector
-633 990 0
v_2 =
1×3 int32 row vector
0 500 0
But i am having the following error so I 'm looking for how to remove this error
Error using norm
First argument must be single or double.
Error in test6 (line 64)
Theta = atan2(norm(cross(v_1, v_2)), dot(v_1, v_2));
I'm getting this error while using this code
Dyuman Joshi
Dyuman Joshi el 4 de Oct. de 2023
@jari jafri convert the data to double -
v_1 = int32([-633 990 0]);
v_2 = int32([0 500 0]);
v_1 = double(v_1);
v_2 = double(v_2);
Theta = atan2(norm(cross(v_1, v_2)), dot(v_1, v_2))
Theta = 0.5689

Iniciar sesión para comentar.

Más respuestas (2)

Jos (10584)
Jos (10584) el 21 de Oct. de 2019
Use the dot product between the two vectors (v1 and v2) given by the four x,y pairs points.
Given the formula: dot(v1,v2) = | v1 | x | v2 | x cos(A)
I leave it to you to find the angle A using the matlab functions norm, dot and acos.

Bjorn Gustavsson
Bjorn Gustavsson el 21 de Oct. de 2019

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by