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


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


R语言中的acos()函数用于计算作为参数传递给它的数值的反余弦值。

用法: acos(x)

参数:
x:数值

范例1:


# R code to calculate inverse cosine of a value
  
# Assigning values to variables 
x1 <- -1
x2 <- 0.5
  
# Using acos() Function
acos(x1)
acos(x2)

输出:

[1] 3.141593
[1] 1.047198

范例2:


# R code to calculate inverse cosine of a value
  
# Assigning values to variables
x1 <- 0.224587
x2 <- 0.456732
  
# Using acos() Function
acos(x1)
acos(x2)

输出:

[1] 1.344277
[1] 1.096478

相关用法


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