Java Utililty Methods cosh

List of utility methods to do cosh

Description

The list of methods to do cosh are organized into topic(s).

Method

doublecosh(double paramDouble)
cosh
return (StrictMath.exp(paramDouble) + StrictMath.exp(-paramDouble)) * 0.5D;
doublecosh(double x)
cosh
return 0.5 * (Math.exp(x) + Math.exp(-x));
doublecosh(double x)
Return the hyperbolic cosine of a double.
double ans;
double y = Math.exp(Math.abs(x));
if (Double.isNaN(x)) {
    ans = Double.NaN;
} else if (Double.isInfinite(x)) {
    ans = x;
else if (y < 94906265.62D) {
...
doublecosh(Double x)
Cosh.
return Math.cosh(x);
doublecosh(double x)
Returns the hyperbolic cosine of x.
return (Math.exp(x) + Math.exp(-x)) / 2.0;