atan2(0,0) is not undefined (NaN)
21 ビュー (過去 30 日間)
古いコメントを表示
I'm using MATLAB R2020a Home Edition on a Windows® machine. I have a need to calculate atan2(0,0) which, if I am correct should result in NaN (undefined). The answer I get is zero. Is this not bug in the underline algorithm for computation of atan2()?
Thank you in advance.
0 件のコメント
採用された回答
Star Strider
2020 年 8 月 11 日
The result also isd not completely standardised. See the section in the Wikipedia article on Atan2 on Realizations of the function in common computer languages.
2 件のコメント
Star Strider
2020 年 8 月 11 日
As always, my pleasure!
MATLAB began as a FORTRAN implementation, later switching to C.
その他の回答 (2 件)
hosein Javan
2020 年 8 月 11 日
it is not a bug. although in analytic math it is undefined, the trigonometric functions are usually calculated by their taylor series expansion on numerical softwares. no doubt it results zero. however when you try very small values, it is still correct:
atan2(1e-301,1e-301)*180/pi
ans =
45
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!