| Added Methods |
double cbrt(double)
|
Returns the cube root of a double value. |
double cosh(double)
|
Returns the hyperbolic cosine of a double value. |
double expm1(double)
|
Returns ex -1. |
double hypot(double, double)
|
Returns sqrt(x2 +y2)
without intermediate overflow or underflow. |
double log10(double)
|
Returns the base 10 logarithm of a double value. |
double log1p(double)
|
Returns the natural logarithm of the sum of the argument and 1. |
double signum(double)
|
Returns the signum function of the argument; zero if the argument
is zero, 1.0 if the argument is greater than zero, -1.0 if the
argument is less than zero. |
float signum(float)
|
Returns the signum function of the argument; zero if the argument
is zero, 1.0f if the argument is greater than zero, -1.0f if the
argument is less than zero. |
double sinh(double)
|
Returns the hyperbolic sine of a double value. |
double tanh(double)
|
Returns the hyperbolic tangent of a double value. |
double ulp(double)
|
Returns the size of an ulp of the argument. |
float ulp(float)
|
Returns the size of an ulp of the argument. |