Finding the angle between lines that Ive plotted

조회 수: 16 (최근 30일)
Zo
Zo 2019년 3월 25일
댓글: Zo 2019년 3월 26일
Good evening ,
I've been trying to find the angle of the lines in the attached photo and i can't seem to find it correctly.
This is the code i've been using.
Please help.
% plot the mouse point coordinates on the figure
L = plot(mousePointCoords(:,1), mousePointCoords(:,2),'b','LineWidth',2);
u = mousePointCoords(:,1)
v = mousePointCoords(:,2)
CosTheta = dot(u,v)/(norm(u)*norm(v));
ThetaInDegrees = acosd(CosTheta);

채택된 답변

KSSV
KSSV 2019년 3월 25일
  댓글 수: 1
Zo
Zo 2019년 3월 26일
okay so i did use them. However when i ran the code, i got three angles and im not sure which is the angle that i am looking for. I attached what i got.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Pulsed Waveforms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by