跳转到内容

Rebol 编程/反正切

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

返回以度为单位的三角反正切。

ARCTANGENT 是一个原生值。

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

源代码

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

华夏公益教科书