acos() 是 R Programming 中的一個內置函數,用於計算指定弧度值的反餘弦值,輸出也是以弧度為單位。
用法:acos(radian)
返回:Returns the arc cosine value of radian.
範例1:
# Using acos() method
gfg <- acos(pi/4)
print(gfg)
輸出:
[1] 0.7853982
範例2:
# Using acos() method
gfg <- acos(pi/6)
print(gfg)
輸出:
[1] 1.019727
相關用法
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 cosh()用法及代碼示例
- R語言 cospi()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 sinh()用法及代碼示例
- R語言 tanh()用法及代碼示例
- R語言 tan()用法及代碼示例
- R語言 asin()用法及代碼示例
- R語言 atan()用法及代碼示例
- R語言 factorial()用法及代碼示例
- R語言 choose()用法及代碼示例
- R語言 abs()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 exp()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 colSums()用法及代碼示例
- R語言 colMeans()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Calculate arc cosine of a value in R programming – acos() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。