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


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


acosh()R語言中的函數用於計算數值數據的雙曲反餘弦。

用法:acosh(x)

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

範例1:


# R program to illustrate 
# acosh function 
     
# Calling acosh() function over 
# different numbers 
acosh(0) 
acosh(1) 

輸出:

[1] NaN
[1] 0

範例2:


# R program to illustrate 
# acosh function 
     
# Calling acosh() function over 
# different numbers 
acosh(3 / 2) 
acosh(2) 

輸出:

[1] 0.9624237
[1] 1.316958

相關用法


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