JavaScriptのMath.asinh()関数
Mathオブジェクトのasinh()関数は数値を受け取り、その双曲線アークサイン値をラジアンで返します。結果の値を度に変換するには、180を掛けて、結果を3.14159(円周率の値)で割ります。
構文
その構文は次のとおりです
Math.asinh(0.5)
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.asinh(90); document.write("Hyperbolic arcsine value: "+result); document.write("<br>"); document.write("Hyperbolic arcsine value in degrees: "+result*180/Math.PI); </script> </body> </html>
出力
Hyperbolic arcsine value: 5.192987713658941 Hyperbolic arcsine value in degrees: 297.53627905594817
-
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