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


R语言 acos()用法及代码示例


acos() 是 R Programming 中的一个内置函数,用于计算指定弧度值的反余弦值,输出也是以弧度为单位。

用法: acos(radian)
返回:Returns the arc cosine value of radian.

范例1:


# Using acos() method
gfg <- acos(pi/4)
  
print(gfg)

输出:

[1] 0.7853982

范例2:


# Using acos() method
gfg <- acos(pi/6)
  
print(gfg)

输出:

[1] 1.019727

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Calculate arc cosine of a value in R programming – acos() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。