Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.atan()

概要

引数として与えた数のアークタンジェントをラジアン単位で返します。

構文

Math.atan(x) 

引数

x
数値(数字)

詳細

atan メソッドは、-PI/2 から PI/2 までのラジアンの数値を返します。

atanMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.atan() として使用するようにしてください。

例: Math.atan の使用

以下の関数は、変数 x のアークタンジェントを返します。

function getAtan(x) {
   return Math.atan(x)
}

getAtan1 を渡した場合、0.7853981633974483 を返します。5 を渡した場合は、 0.4636476090008061 を返します。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,