how to find cosine angle known the end points of 2 linesegments
Show older comments
There are 2 line segments, known their end points, how can i find angle between them
1 Comment
Guillaume
on 29 Apr 2015
Accepted Answer
More Answers (1)
Roger Stafford
on 29 Apr 2015
Edited: Roger Stafford
on 29 Apr 2015
Using 'atan2' or 'atan2d' and cross product is more accurate for angles that are near zero or near pi (180 degrees.)
a = atan2(norm(cross(D1,D2)),dot(D1,D2)); % Angle in radians
or
a = atan2d(norm(cross(D1,D2)),dot(D1,D2)); % Angle in degrees
1 Comment
krishnasri
on 5 May 2015
Categories
Find more on Lengths and Angles in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!