以下是Math atan()方法的示例。
- 例:
<script type="text/javascript"> document.write("When 1 is passed as a parameter:" + Math.atan(1)); </script>
- 輸出:
When 1 is passed as a parameter:0.7853981633974483
Math.atan()方法用於返回以弧度為單位的數字的反正切值。 Math.atan()方法返回介於-pi /2和pi /2弧度之間的數值。 atan()是Math的靜態方法,因此,它始終用作Math.atan(),而不是用作創建的Math對象的方法。
Math.atan(x)=arctan(x)=unique y
where y belongs to [-pi/2;pi/2]
such that tan(y)=x
用法:
Math.atan(value)
參數:該函數接受如上所述和以下描述的單個參數:
- x:這是您要查找的反正切的弧度數。
返回值:Math.atan()函數以弧度返回給定數字的反正切值。
以下示例說明了JavaScript中的Math atan()方法
- 範例1:
Input:Math.atan(1) Output:0.7853981633974483
- 範例2:
Input:Math.atan(0) Output:0
- 範例3:
Input:Math.atan(-0) Output:-0
- 範例4:
Input:Math.atan(Infinity) Output: 1.5707963267948966
- 範例5:
Input:Math.atan(-Infinity) Output: -1.5707963267948966
上述方法的更多示例代碼如下:
程序1:
<script type="text/javascript">
document.write("When 0 is passed as a parameter:"
+ Math.atan(0));
</script>
輸出:
When 0 is passed as a parameter:0
程序2:
<script type="text/javascript">
document.write("When -0 is passed as a parameter:"
+ Math.atan(-0));
</script>
輸出:
When -0 is passed as a parameter:0
程序3:
<script type="text/javascript">
document.write("When Infinity is passed as a parameter:"
+ Math.atan(Infinity));
</script>
輸出:
When Infinity is passed as a parameter:1.5707963267948966
程序4:
<script type="text/javascript">
document.write("When -Infinity is passed as a parameter:"
+ Math.atan(-Infinity));
</script>
輸出:
When -Infinity is passed as a parameter:-1.5707963267948966
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- PHP atan( )用法及代碼示例
- p5.js atan()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math atan() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。