how to find visual angle
显示 更早的评论
I have these three points(red dots) ,and I have to find angle, I am using polyfit function to calculate angle(finding slope first).

Now angle I am getting is near to 87 degrees, which is correct . But the thing is, I want to find the visual angle, which in this case will be near to 30 degrees. Any idea how to proceed with this? Thanks
3 个评论
Walter Roberson
2016-5-10
What are you calculating the angle between? Is the 87 degrees the angle from the first red dot to the second? From the second to the third? And which is the "visual" angle?
I suspect the "visual angle" might be atan2((y3-y1), (x3-x1)) in radians
smriti marathe
2016-5-10
Walter Roberson
2016-5-10
Which angle are you calculating as 87? (a-b) to (b-c) ? There is nothing that to me looks almost 90 degrees. But dot a- dot c- dot b might be maybe 115 degrees or so ?
回答(1 个)
Roger Stafford
2016-5-10
编辑:Roger Stafford
2016-5-10
The true angle between ba and bc would be:
ang = atan2( abs((xa-xb)*(yc-yb)-(ya-yb)*(xc-xb)) , ...
(xa-xb)*(xc-xb)+(ya-yb)*(yc-yb) );
Your plot without an 'axis equal' restriction will distort these angles.
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
