跳转到内容

Rebol 编程/反余弦

来自维基教科书,开放的书籍,面向开放的世界
ARCCOSINE value /radians 

返回以度为单位的三角反余弦。

ARCCOSINE 是一个原生值。

  • value -- (类型:数字)
  • /radians -- 返回以弧度为单位的结果。

源代码

[编辑 | 编辑源代码]
arccosine: native[
    "Returns the trigonometric arccosine in degrees." 
    value [number!] 
    /radians "Returns result in radians."
]

华夏公益教科书