"함수 atan()"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 Atan() 문서를 함수 atan() 문서로 옮겼습니다)
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
5번째 줄: 5번째 줄:
==Excel==
==Excel==
[[category: Excel]]
[[category: Excel]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
=ATAN(1)
=ATAN(1)
// 0.785398163
// 0.785398163
=ATAN(2)
=ATAN(2)
// 1.107148718
// 1.107148718
</source>
</syntaxhighlight>


==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
echo atan(1);
echo atan(1);
// 0.78539816339745
// 0.78539816339745
echo atan(2);
echo atan(2);
// 1.1071487177941
// 1.1071487177941
</source>
</syntaxhighlight>


==PowerShell==
==PowerShell==
[[category: PowerShell]]
[[category: PowerShell]]
<source lang='PowerShell'>
<syntaxhighlight lang='PowerShell'>
[math]::atan(1)
[math]::atan(1)
# 0.785398163397448
# 0.785398163397448
[math]::atan(2)
[math]::atan(2)
# 1.10714871779409
# 1.10714871779409
</source>
</syntaxhighlight>


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
import math
import math
print math.atan(1)
print math.atan(1)
38번째 줄: 38번째 줄:
print math.atan(2)
print math.atan(2)
# 1.10714871779
# 1.10714871779
</source>
</syntaxhighlight>


==Ruby==
==Ruby==
[[category: Ruby]]
[[category: Ruby]]
<source lang='Ruby'>
<syntaxhighlight lang='Ruby'>
puts Math::atan(1)
puts Math::atan(1)
# 0.785398163397448
# 0.785398163397448
puts Math::atan(2)
puts Math::atan(2)
# 1.10714871779409
# 1.10714871779409
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:32 기준 최신판

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 }}