how can i solve this angle between vectors?
Mostrar comentarios más antiguos
Find the angle between the vectors a and b given that a = 3; b = 5; and a-b = 7:
Respuestas (2)
Andrei Bobrov
el 4 de Dic. de 2015
Editada: Andrei Bobrov
el 4 de Dic. de 2015
1 voto
a = 3;
b = 5;
c = 7;
alpha = acosd((a.^2 + b.^2 - (c).^2)./(2*a*b))
Categorías
Más información sobre Linear Algebra en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!