Java Utililty Methods sinh

List of utility methods to do sinh

Description

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

Method

doublesinh(double paramDouble)
sinh
return (StrictMath.exp(paramDouble) - StrictMath.exp(-paramDouble)) * 0.5D;
doublesinh(double t)
sinh
return (Math.exp(t) - Math.exp(-t)) / 2;
doublesinh(double x)
Returns the hyperbolic sine of a double.
double ans;
double y = Math.abs(x);
if (Double.isNaN(x)) {
    ans = Double.NaN;
} else if (Double.isInfinite(y)) {
    return x;
} else if (y < 2.58096e-08) {
    ans = x;
...
doublesinh(Double x)
Sinh.
return Math.sinh(x);
doublesinh(final double x)
Returns the hyperbolic sine of x.
return (Math.exp(x) - Math.exp(-x)) / 2.0;