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


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


R語言中的atanh()函數用於計算數值數據的雙曲反正切。

用法: atanh(x)

參數:
x:數值、數組或向量。

範例1:


# R program to illustrate
# atanh function
   
# Calling atanh() function over
# different numbers
atanh(0)
atanh(1)
atanh(0.9)
atanh(-0.8)

輸出:

[1] 0
[1] Inf
[1] 1.472219
[1] -1.098612

範例2:


# R program to illustrate
# atanh function
  
# Initializing some vectors
x <- c(0, 1, 0.9)
y <- c(-0.1, 0.1)
   
# Calling atanh() function
atanh(x)
atanh(y)

輸出:

[1] 0.000000      Inf 1.472219
[1] -0.1003353  0.1003353

相關用法


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