jax.numpy.arccos

目录

jax.numpy.arccos#

jax.numpy.arccos(x, /)[source]#

按元素计算三角反余弦。

LAX 后端实现 numpy.arccos()

以下为原始文档字符串。

The inverse of cos so that, if y = cos(x), then x = arccos(y).

参数::

x (array_like) – 单位圆上的 x 坐标。对于实数参数,域为 [-1, 1]。

返回值::

angle – 以弧度 [0, pi] 表示的,与给定 x 坐标在单位圆上相交的射线的角度。如果 x 是标量,则为标量。

返回类型::

ndarray

参考文献

M. Abramowitz 和 I.A. Stegun,“数学函数手册”,第 10 版印刷,1964 年,第 79 页。 https://personal.math.ubc.ca/~cbm/aands/page_79.htm