함수 atan()

Jmnote (토론 | 기여)님의 2015년 4월 1일 (수) 14:37 판 (Jmnote 사용자가 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 }}