how can i solve this angle between vectors?
이전 댓글 표시
Find the angle between the vectors a and b given that a = 3; b = 5; and a-b = 7:
답변 (2개)
Andrei Bobrov
2015년 12월 4일
편집: Andrei Bobrov
2015년 12월 4일
1 개 추천
a = 3;
b = 5;
c = 7;
alpha = acosd((a.^2 + b.^2 - (c).^2)./(2*a*b))
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!