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
相关用法
- R语言 cospi()用法及代码示例
- R语言 tanpi()用法及代码示例
- R语言 sin()用法及代码示例
- R语言 sinh()用法及代码示例
- R语言 asin()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 trigamma()用法及代码示例
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qpois()用法及代码示例
- R语言 qnbinom()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 integrate()用法及代码示例
- R语言 qgeom()用法及代码示例
- R语言 qunif()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the sine value which is multiples of pi in R Programming – sinpi() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。