함수 atan()

(Atan에서 넘어옴)
atan
arctan

1 Excel[ | ]

=ATAN(1)
// 0.785398163
=ATAN(2)
// 1.107148718

2 PHP[ | ]

echo atan(1);
// 0.78539816339745
echo atan(2);
// 1.1071487177941

3 PowerShell[ | ]

[math]::atan(1)
# 0.785398163397448
[math]::atan(2)
# 1.10714871779409

4 Python[ | ]

import math
print math.atan(1)
# 0.785398163397
print math.atan(2)
# 1.10714871779

5 Ruby[ | ]

puts Math::atan(1)
# 0.785398163397448
puts Math::atan(2)
# 1.10714871779409

6 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}