What is the angle of vector conecting two points?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Suppose I have two points P1(x1,y1) and P2(x2,y2). How can I calculate angle of vector connecting the two points?
2 Commenti
Risposte (1)
KSSV
il 19 Mag 2016
Angle means, it shall be anti-clockwise with respect to x -axis... use: theta = atan((y2-y1)/(x2-x1))
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!