List of utility methods to do cosh
double | cosh(double paramDouble) cosh return (StrictMath.exp(paramDouble) + StrictMath.exp(-paramDouble)) * 0.5D;
|
double | cosh(double x) cosh return 0.5 * (Math.exp(x) + Math.exp(-x));
|
double | cosh(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) { ... |
double | cosh(Double x) Cosh. return Math.cosh(x);
|
double | cosh(double x) Returns the hyperbolic cosine of x. return (Math.exp(x) + Math.exp(-x)) / 2.0;
|