Package de.tilman_neumann.jml.hyperbolic
Class ArcSinH
- java.lang.Object
-
- de.tilman_neumann.jml.hyperbolic.ArcSinH
-
public class ArcSinH extends Object
Inverse hyperbolic sinus function.- Author:
- Tilman Neumann
-
-
Constructor Summary
Constructors Constructor Description ArcSinH()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BigDecimal
asinh(BigDecimal x, Scale scale)
y = asinh(x) implemented by ln() formula, for all real x.
-
-
-
Method Detail
-
asinh
public static BigDecimal asinh(BigDecimal x, Scale scale)
y = asinh(x) implemented by ln() formula, for all real x.- Parameters:
x
- real argumentscale
- wanted accuracy in after-comma digits- Returns:
- y = asinh(x), y elemOf (-inf, +inf).
-
-