The distance between sensors is c=22, a and b are the distance of the sensors from the object. Now which angle is being calculated with this code
Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
problem with the code
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
Which angle is calculating with this matlab code
a=sensor1; b=sensor2; c=22;
numerator=(b^2)+(c^2)-(a^2); %Täljare demoninator=2*b*c; %Nämnare
cos_alpha=numerator/demoninator;
alpha=acosd(cos_alpha); %The angle alpha in degrees
Can anyone help me in understanding this code
Thanks in advance
댓글 수: 1
답변 (1개)
Roger Stafford
2013년 5월 12일
Apparently there is a triangle with vertices A, B, and C with sides opposite to these vertices of length a, b, and c, resectively. The angle, alpha, at vertex A must satisfy the cosine law:
a^2 = b^2 + c^2 - 2*b*c*cos(alpha)
cos(alpha) = (b^2+c^2-a^2)/(2*b*c)
alpha = acosd((b^2+c^2-a^2)/(2*b*c)) (in degrees)
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!