How to measure angle of intersection ?

6 ビュー (過去 30 日間)
thineesh Vijayakumar
thineesh Vijayakumar 2019 年 4 月 9 日
コメント済み: A. Sawas 2019 年 4 月 12 日
I need to calculate the angle of intersection . Can anyone share the coding ? How to find the angle (red shaded region) ? Thank you.ggg.JPG
  2 件のコメント
Rik
Rik 2019 年 4 月 9 日
Do you have the locations of the two lines involved? Then you could fit two linear functions and use mathematics to find the angle.
A. Sawas
A. Sawas 2019 年 4 月 9 日
I think you have asked an identical question before "How to measure angle between two lines?".
I reposted the solution below and added some comments. Please comment on the solution if this is not what you are looking for.

サインインしてコメントする。

採用された回答

A. Sawas
A. Sawas 2019 年 4 月 9 日
編集済み: A. Sawas 2019 年 4 月 9 日
Assuming that the two lines are defined by four points P1, P2, P3, and P4 as such, the first line is L1(P1,P2) and the second line L2 (P3,P4) you can find the angle using the following code:
% define the points as [x,y]
P1 = [1,1];
P2 = [5,5];
P3 = [5,2];
P4 = [1,3];
% dx = x1 - x2;
dx1 = P1(1)-P2(1);
dx2 = P3(1)-P4(1);
% dy = y1 - y2;
dy1 = P1(2)-P2(2);
dy2 = P3(2)-P4(2);
% the angle (in degrees) between the lines:
angle = 180 - acosd((dx1*dx2+dy1*dy2)/(sqrt(dx1^2+dx2^2)*sqrt(dy1^2+dy2^2)));
disp(angle);
  2 件のコメント
thineesh Vijayakumar
thineesh Vijayakumar 2019 年 4 月 12 日
Thank you :)
A. Sawas
A. Sawas 2019 年 4 月 12 日
You are welcome :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConstruction についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by