当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math atan()用法及代码示例


以下是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




相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 JavaScript Math atan() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。