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


Javascript Math.acos( )用法及代码示例


JavaScript中的Math.acos()函数用于返回弧度数的反余弦值。

Math.acos(x)=arccos(x)=unique y,
where y belongs to [0;pi] 
such that cos(y)=x

Math.acos()方法返回介于0和pi弧度之间的数值。
acos()是Math的静态方法,因此,始终用作Math.acos(),而不是用作创建的Math对象的方法。

用法:


Math.acos(value)

参数:此函数接受单个参数值,该参数值是要查找的反余弦的弧度数。

返回值:Math.acos()函数以弧度返回给定数字的反余弦值。

例子:

Input  : Math.acos(1)
Output : 0
     
Input  : Math.acos(-1)
Output : 3.141592653589793

Input  : Math.acos(0)
Output : 1.5707963267948966

Input  : Math.acos(0.5)
Output : 1.0471975511965979

Input  : Math.acos(2)
Output : NaN

  1. 示例1:当1作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.acos(1)); 
    </script>

    输出:

    Output : 0
  2. 示例2:当-1作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.acos(-1)); 
    </script>

    输出:

    Output : 3.141592653589793
  3. 示例3:当传递0作为参数时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.acos(0)); 
    </script>

    输出:

    Output : 1.5707963267948966
  4. 示例4:当传递0.5作为参数时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.acos(0.5)); 
    </script>

    输出:

    Output : 1.0471975511965979
  5. 示例5:当2作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.acos(2)); 
    </script>

    输出:

    Output : NaN

支持的浏览器:以下列出了JavaScript Math.acos()函数支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器



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