Why I'm getting a complex degree value while using "acos"?
显示 更早的评论
% To reproduce the snippet, you can use below code
XYZc = [2489011.31135707, 7440368.1011554, 17.6551714555564];
X0 = 2489018.662
X0 = 2.4890e+06
Y0 = 7440333.989
Y0 = 7.4403e+06
Z0= 10.091
Z0 = 10.0910
dir_vec1 = XYZc-[X0, Y0, Z0];
dir_mag1= norm(dir_vec1);
dir_vec2 = [0,XYZc(2),0]-[X0, Y0, Z0];
dir_mag2= norm(dir_vec2);
alpha = acosd(dir_mag2/dir_mag1)
alpha = 0.0000e+00 + 6.7868e+02i
1 个评论
I have edited your post for you to make your code output visible. It is always advisable to do this so we can see what output you are talking about.
采纳的回答
Because abs(dir_mag2/dir_mag1) is greater than 1.
abs(dir_mag2/dir_mag1)
ans = 6.9710e+04
13 个评论
There is no problem to be solved. It is the correct result.
What I mean is, it is not Matlab's fault. It is doing what you asked, correctly. Matlab has no way of knowing, just as I do not, what you were really trying to code.
I wanted to calculate the angle based on acosine. Please see this pic Reference

In a right-angled triangle, the hypotenuse is always longer than the adjacant. So if you think dir_mag2 is the length of the adjacant and dir_mag1 is the length of the hypothenuse in the triangle you consider, you must have done something wrong.
If you want the angle between dir_vec1 and dir_vec2, it would be,
acosd( dot( dir_vec1/dir_mag1 , dir_vec2/dir_mag2 ) )
Otherwise, you haven't said enough for us to guess what angle your input data is supposed to define.
@Matt J @Torsten thanks both of you, to calify, I want to compute this angle(screenshot), based on this equation, it gets me 78 degree, but visually it looks like a smaller angle that this value?!. Maybe something wrong, do you have any idea?
% i ran this code
vec1 = XYZc-[X0, Y0, Z0];
vec2 = [0,XYZc(2),0]-[X0, Y0, Z0];
acosd(dot(vec1, vec2) / (norm(vec1)*norm(vec2)))

Looks like 78° :-)
XYZc = [2489011.31135707, 7440368.1011554, 17.6551714555564];
X0 = 2489018.662
X0 = 2.4890e+06
Y0 = 7440333.989
Y0 = 7.4403e+06
Z0= 10.091
Z0 = 10.0910
dir_vec1 = XYZc-[X0, Y0, Z0];
dir_mag1= norm(dir_vec1);
dir_vec2 = [0,XYZc(2),0]-[X0, Y0, Z0];
dir_mag2= norm(dir_vec2);
plot3([0 dir_vec1(1)]/dir_mag1,[0,dir_vec1(2)]/dir_mag1,[ 0,dir_vec1(3)]/dir_mag1)
hold on
plot3([0 dir_vec2(1)]/dir_mag2,[0,dir_vec2(2)]/dir_mag2,[ 0,dir_vec2(3)]/dir_mag2)

You're welcome, but please Accept-click the answer to indicate that it resolved your question.
It's not in the comments, neither his nor yours. It should be above, at the very first answer post of @Matt J
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!选择网站
选择网站以获取翻译的可用内容,以及查看当地活动和优惠。根据您的位置,我们建议您选择:。
您也可以从以下列表中选择网站:
如何获得最佳网站性能
选择中国网站(中文或英文)以获得最佳网站性能。其他 MathWorks 国家/地区网站并未针对您所在位置的访问进行优化。
美洲
- América Latina (Español)
- Canada (English)
- United States (English)
欧洲
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
