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


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


R 语言中的 cospi() 函数用于计算 x 的余弦值,它是 pi 的倍数。

用法: cospi(x)

参数:
x:数值、数组或向量

范例1:


# R program to illustrate
# cospi function
  
# Calling the cospi() function
cospi(0)
cospi(1)

输出:

[1] 1
[1] -1

范例2:


# R program to illustrate
# cospi function
  
# Calling the cospi() function
cospi(1 / 4)
cospi(2 / 5)
cospi(3 / 7)

输出:

[1] 0.7071068
[1] 0.309017
[1] 0.2225209 

相关用法


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