當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 expm1()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Compute the Exponential minus 1 of a Number in R Programming – expm1() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。