Java tanh tanh(Double x)

Here you can find the source of tanh(Double x)

Description

Tanh.

License

Open Source License

Parameter

Parameter Description
x the x

Return

the double

Declaration

public static double tanh(Double x) 

Method Source Code

//package com.java2s;

public class Main {
    /**//from w w  w . j a v  a  2 s .co  m
     * Tanh.
     *
     * @param x the x
     * @return the double
     */
    public static double tanh(Double x) {
        return Math.tanh(x);
    }
}

Related

  1. tanh(double paramDouble)
  2. tanh(double t)
  3. tanh(double x)
  4. tanh(double x)
  5. tanh(double z)
  6. tanh(final double x)
  7. tanhDerivative(final double thOutput)
  8. tanhFunction(double x)