Intersection of two lines
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gaetano Pavone
am 21 Sep. 2021
Bearbeitet: Matt J
am 21 Sep. 2021
Hi, I have four coplanar points P1, P2, P3 and P4 in 3d. I would like to calculate the intersection point among the line passing through P1 and P2 and that passing through P3 and P4.
Moreover I would like to evaluate the angle between the vector connecting such intersection and the origin with z-axis and then plot the vector.
0 Kommentare
Akzeptierte Antwort
Matt J
am 21 Sep. 2021
Bearbeitet: Matt J
am 21 Sep. 2021
You need a least squares solution, since lines in 3D do not generally intersect. Assuming your point data are in column-vector form, this is,
c=[P2-P1,P3-P4]\(P3-P1);
P_intersection=P1+c(1)*(P2-P1)
angle=acos(P_intersection(3)/norm(P_intersection))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!