Java tanh tanhFunction(double x)

Here you can find the source of tanhFunction(double x)

Description

tanh Function

License

Apache License

Declaration

public static double tanhFunction(double x) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static double tanhFunction(double x) {
        return Math.tanh(x);
    }//w  w  w .ja  va2  s  .c o m
}

Related

  1. tanh(double x)
  2. tanh(Double x)
  3. tanh(double z)
  4. tanh(final double x)
  5. tanhDerivative(final double thOutput)
  6. tanht(double temp)