JavaScriptのMath.atanh()関数
Mathオブジェクトのatanh()関数は数値を受け取り、その双曲線円弧の逆正接値をラジアンで返します。結果の値を度に変換するには、180を掛けて、結果を3.14159(円周率の値)で割ります。
構文
その構文は次のとおりです
Math.atanh(0.5)
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.atanh(0.5); document.write("arctangent value: "+result); document.write("<br>"); document.write("hyperbolic arctangent value in degrees: "+result*180/Math.PI); </script> </body> </html>
出力
arctangent value: 0.5493061443340548 arctangent value in degrees: 31.47292373094538
-
JavaScriptのMath.tanh()関数
Mathオブジェクトのtanh()関数は、角度(ラジアン)を受け入れ、その双曲線正接値を返します。 構文 その構文は次のとおりです Math.tanh(90) 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.tanh(
-
JavaScriptのMath.tan()関数
Mathオブジェクトのtan()関数は、角度(ラジアン)を受け入れ、そのタンジェント値を返します。 構文 その構文は次のとおりです Math.tan(90) 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.tan(90