Angle between a vector and xy, xz, and yz planes
13 次查看(过去 30 天)
显示 更早的评论
Hi
I have a vector defined by P1. [12,14,78]
How can I caculate the angle this forms with the xy, xz an yz planes pls.
I can do with atan(x/y) etc, but this is problematic when the angle is over 90 or 180.
What would be the best approach pls
4 个评论
Bruno Luong
2023-7-24
编辑:Bruno Luong
2023-7-24
From your graph it looks to me the angles are between vector P and basis vectors and not the planes
回答(2 个)
Bruno Luong
2023-7-24
编辑:Bruno Luong
2023-7-24
P1=[12,14,78]
xyzc=num2cell(eye(3),1)
[x,y,z]=deal(xyzc{:});
rad2deg(subspace(P1(:),[x y]))
rad2deg(subspace(P1(:),[x z]))
rad2deg(subspace(P1(:),[y z]))
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!