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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。