MATLAB script to find the angle (in degrees) between two vectorsScrip
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ceren Akcam
el 28 de Nov. de 2021
Respondida: HWIK
el 28 de Nov. de 2021
How can I write a MATLAB script to find the angle (in degrees) between two vectors, Store the vectors in variables and calculate the angle.
0 comentarios
Respuesta aceptada
HWIK
el 28 de Nov. de 2021
CosTheta = max(min(dot(u,v)/(norm(u)*norm(v)),1),-1);
ThetaInDegrees = real(acosd(CosTheta));
Where u and v are your input vectors.
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!