how can i solve this angle between vectors?
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Find the angle between the vectors a and b given that a = 3; b = 5; and a-b = 7:
0 comentarios
Respuestas (2)
VBBV
el 15 de Mzo. de 2023
a = 3;
b = 5;
c = 7;
alpha = acosd((a.^2 + b.^2 - (c).^2)./(2*a*b))
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!