How do I get the angle between three points input by ginput() in appdesigner?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
[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 Commenti
Risposta accettata
David Hill
il 30 Nov 2022
Modificato: David Hill
il 30 Nov 2022
z=[x,y];
d=diff(z);
Angle=acos(dot(-d(1,:),d(2,:))/norm(d(1,:))/norm(d(2,:)));
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Exploration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!