Find coordinates point M
Ältere Kommentare anzeigen

I need to find the coordinates of point M. Has anyone got any idea of how to find them?
Thanks in advance
2 Kommentare
David Goodmanson
am 15 Dez. 2017
If you put A = [Ax Ay 0], same style for B and P, then
u = cross([0 0 1],B-A);
u = u/norm(u);
is a unit vector in the direction perpendicular to the line AB. From there you should be able to construct the vector from P to M and find M.
Akzeptierte Antwort
Weitere Antworten (1)
help_me
am 15 Dez. 2017
0 Stimmen
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!