How do I get the angle between three points input by ginput() in appdesigner?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
[x, y] = ginput(3);
app.UIFigure.HandleVisibility = fhv;
x = round(x);
y = round(y);
I received the input with ginput(), but I don't know how to convert it to angle.
(R2022b)
0 commentaires
Réponse acceptée
David Hill
le 30 Nov 2022
Modifié(e) : David Hill
le 30 Nov 2022
z=[x,y];
d=diff(z);
Angle=acos(dot(-d(1,:),d(2,:))/norm(d(1,:))/norm(d(2,:)));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Exploration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!