How to use the three points A1, A2, and B0 to calculate ∠A1B0A2?
Mostra commenti meno recenti
Risposta accettata
Più risposte (1)
James Tursa
il 17 Dic 2020
Modificato: James Tursa
il 17 Dic 2020
A1 = [171 422] ;
A2 = [415 413] ;
B0 = [277 386] ;
d1 = A1-B0 ;
d2 = A2-B0 ;
theta = atan2( norm(cross([d1 0],[d2 0])), dot(d1,d2) );
See this link:
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
