List of utility methods to do sinh
double | sinh(double paramDouble) sinh return (StrictMath.exp(paramDouble) - StrictMath.exp(-paramDouble)) * 0.5D;
|
double | sinh(double t) sinh return (Math.exp(t) - Math.exp(-t)) / 2;
|
double | sinh(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; ... |
double | sinh(Double x) Sinh. return Math.sinh(x);
|
double | sinh(final double x) Returns the hyperbolic sine of x. return (Math.exp(x) - Math.exp(-x)) / 2.0;
|