R 語言中的 expm1() 函數用於計算 index 減 1,即 exp()-1。
用法: expm1(x)
參數:
a, b:數字或數字向量
範例1:
# R program to illustrate
# expm1 function
# Calling the expm1() function
expm1(4) # e5 -1
expm1(10)
expm1(15)
輸出:
[1] 53.59815 [1] 22025.47 [1] 3269016
範例2:
# R program to illustrate
# expm1 function
# Calling the expm1() function
expm1(rep(1:5))
expm1(rep(5:8))
輸出:
[1] 1.718282 6.389056 19.085537 53.598150 147.413159 [1] 147.4132 402.4288 1095.6332 2979.9580
相關用法
- R語言 exp()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 digamma()用法及代碼示例
- 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()用法及代碼示例
- R語言 rf()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Compute the Exponential minus 1 of a Number in R Programming – expm1() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。