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


JavaScript Math atanh()用法及代碼示例


下麵是Math atanh()方法的示例。

  • 例:
    <script type="text/javascript"> 
           document.write("When 1 is passed as a parameter:"  
                         + Math.atanh(1)); 
    </script>
  • 輸出:
    When 1 is passed as a parameter:Infinity

Math.atanh()方法用於返回數字的雙曲反正切。 atanh()是Math的靜態方法,因此它始終用作Math.atanh(),而不是用作創建的Math對象的方法。

Math.atanh (x) = arctanh(x) = y such that tanh (y) = x

用法:

Math.atanh(value)

參數:此方法接受如上所述和以下描述的單個參數:



  • value:此參數保存您想知道其雙曲arc-tangent的編號。

返回值:它返回給定數字的雙曲arc-tangent。

以下示例說明了JavaScript中的Math atanh()方法

  • 範例1:
    Input:Math.atanh(1)
    Output:Infinity
  • 範例2:
    Input:Math.atanh(0)
    Output:0
  • 範例3:
    Input:Math.atanh(2)
    Output:NaN
  • 範例4:
    Input:Math.atanh(0.5)
    Output:0.5493061443340548

上述方法的更多示例代碼如下:

圖1:

<script type="text/javascript"> 
       document.write("When 0 is passed as a parameter:"  
       + Math.atanh(0)); 
</script>

輸出:

When 0 is passed as a parameter:0

程序2:

<script type="text/javascript"> 
        document.write("When 2 is passed as a parameter:"  
        + Math.atanh(2)); 
</script>

輸出:

When 2 is passed as a parameter:NaN

程序3:

<script type="text/javascript"> 
        document.write("When 0.5 is passed as a parameter:"  
        + Math.atanh(0.5)); 
</script>

輸出:

When 0.5 is passed as a parameter:0.5493061443340548

支持的瀏覽器:

  • 穀歌瀏覽器38.0
  • Internet Explorer 12.0
  • Firefox 25.0
  • Opera 25.0
  • Safari 8.0




相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math atanh() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。