public class MathExtras extends Object
MathExtras
class provides extra math functionality not available in java.lang.Math.Modifier and Type | Method and Description |
---|---|
static double |
acosh(double x)
Calculate the area hyperbolic cosine.
|
static double |
asinh(double x)
Calculate the area hyperbolic sine.
|
static double |
atanh(double x)
Calculate the area hyperbolic tangent.
|
static double |
factorial(double x)
Calculate the factorial.
|
static double |
log(double x,
double b)
Calculate the log of x to the base b.
|
public static double asinh(double x)
x
- the operandpublic static double acosh(double x)
x
- the operandpublic static double atanh(double x)
x
- the operandpublic static double log(double x, double b)
x
- the operandb
- the base or radixpublic static double factorial(double x)
x
- the operandCopyright © 2019 Pratanu Mandal. All rights reserved.