how can i solve this angle between vectors?
Ältere Kommentare anzeigen
Find the angle between the vectors a and b given that a = 3; b = 5; and a-b = 7:
Antworten (2)
Andrei Bobrov
am 4 Dez. 2015
Bearbeitet: Andrei Bobrov
am 4 Dez. 2015
1 Stimme
a = 3;
b = 5;
c = 7;
alpha = acosd((a.^2 + b.^2 - (c).^2)./(2*a*b))
Kategorien
Mehr zu Linear Algebra 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!