Loose-Info.com
Last Update 2009/03/29
TOP - JavaScript - Math - atan()

アークタンジェントの値を返します。結果はラジアンで-π/2 〜 +π/2の範囲となります。


戻り値1 = Math.atan( 値1 )

戻り値1
値1のアークタンジェント


(例)
<SCRIPT type="text/javascript"> <!-- function btnclick() { var s = ""; s += "atan(π/4) = " + Math.atan(Math.PI/4) + "\n"; alert(s); } //--> </SCRIPT>