A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Math/acos below:

Math.acos() - JavaScript | MDN

Math.acos()

Baseline Widely available

概述

Math.acos() 返回一个数的反余弦值(单位为弧度),即:

∀ x ∊ [ - 1 ; 1 ] , Math.acos ( x ) = arccos ( x ) = the unique y ∊ [ 0 ; π ] such that cos ( y ) = x \forall x \in [{-1};1],;\mathtt{\operatorname{Math.acos}(x)} = \arccos(x) = \text{ the unique } ; y \in [0; \pi] , \text{such that} ; \cos(y) = x 语法 参数 描述

acos 方法以 -1 到 1 的一个数为参数,返回一个 0 到 pi(弧度)的数值。如果传入的参数值超出了限定的范围,将返回 NaN。

由于 acos 是 Math 的静态方法,所以应该像这样使用:Math.acos(),而不是作为你创建的 Math 实例的属性(Math 不是一个构造函数)。

示例 示例:使用 Math.acos
Math.acos(-2); // NaN
Math.acos(-1); // 3.141592653589793
Math.acos(0); // 1.5707963267948966
Math.acos(0.5); // 1.0471975511965979
Math.acos(1); // 0
Math.acos(2); // NaN

对于小于 -1 或大于 1 的值,Math.acos 返回 NaN。

规范 浏览器兼容性 参见

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4