JavaScript中的Math.atan()函數用於返回以弧度為單位的數字的反正切值。
Math.atan(x)=arctan(x)=unique y,where y belongs to [-pi/2;pi/2] such that tan(y)=x
Math.atan()方法返回介於-pi /2和pi /2弧度之間的數值。
atan()是Math的靜態方法,因此,始終用作Math.atan(),而不是用作創建的Math對象的方法。
用法:
Math.atan(value)
參數:此函數接受單個參數,該參數是要查找反正切的弧度數。
返回值:Math.atan()函數以弧度返回給定數字的反正切。
例子:
Input : Math.atan(1) Output : 0.7853981633974483 Input : Math.atan(0) Output : 0 Input : Math.atan(-0) Output : -0 Input : Math.atan(Infinity) Output : 1.5707963267948966 Input : Math.atan(-Infinity) Output : -1.5707963267948966
- 示例1:當1作為參數傳遞時。
<script type="text/javascript"> document.write("Output : " + Math.atan(1)); </script>
輸出:
Output : 0.7853981633974483
- 示例1:當傳遞0作為參數時。
<script type="text/javascript"> document.write("Output : " + Math.atan(0)); </script>
輸出:
Output : 0
- 示例1:當-0作為參數傳遞時。
<script type="text/javascript"> document.write("Output : " + Math.atan(-0)); </script>
輸出:
Output : -0
- 示例1:當Infinity作為參數傳遞時。
<script type="text/javascript"> document.write("Output : " + Math.atan(Infinity)); </script>
輸出:
Output : 1.5707963267948966
- 示例1:當-Infinity作為參數傳遞時。
<script type="text/javascript"> document.write("Output : " + Math.atan(-Infinity)); </script>
輸出:
Output : -1.5707963267948966
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- Opera
- 蘋果瀏覽器
支持的瀏覽器:下麵列出了JavaScipt Math.atan()函數支持的瀏覽器:
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 Math.atan() In JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。