Java tanh(ハイパーボリックタンジェント)値を取得するサンプル

環境
Windows11 home
java 19.0.1

構文
Math.tanh(ラジアン値)
tanh(ハイパーボリックタンジェント)値を取得するには、「Math.tanh」関数を利用します。

使用例

public class Main {
    public static void main(String[] args) throws Exception {

        System.out.println(Math.tanh(Math.toRadians(45)));  
        System.out.println(Math.tanh(Math.toRadians(-45)));  

    }
}

実行結果
0.6557942026326724
-0.6557942026326724

IT

Posted by arkgame