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


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


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

用法: sinpi(x)

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

范例1:


# R program to illustrate 
# sinpi function 
    
# Calling the sinpi() function 
sinpi(0.5) 
sinpi(1) 

输出:

[1] 1
[1] 0

范例2:


# R program to illustrate 
# sinpi function 
    
# Calling the sinpi() function 
sinpi(1 / 4) 
sinpi(2 / 5) 

输出:

[1] 0.7071068
[1] 0.9510565

相关用法


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