Method Summary |
|
native public static double | IEEEremainder(double d1, double d2) Answers the remainder of dividing the first argument by the second using
the IEEE 754 rules. |
public static double | abs(double d) Answers the absolute value of the argument. |
public static float | abs(float f) Answers the absolute value of the argument. |
public static int | abs(int i) Answers the absolute value of the argument. |
public static long | abs(long l) Answers the absolute value of the argument. |
native public static double | acos(double d) |
native public static double | asin(double d) |
native public static double | atan(double d) |
native public static double | atan2(double d1, double d2) Answers the closest double approximation of the arc tangent of the result
of dividing the first argument by the second argument. |
native public static double | cbrt(double d) Answers the closest double approximation of the cube root of the
argument. |
native public static double | ceil(double d) Answers the double conversion of the most negative (i.e. |
native public static double | cos(double d) |
native public static double | cosh(double d) Answers the closest double approximation of the hyperbolic cosine of the
argument. |
native public static double | exp(double d) |
native public static double | expm1(double d) Answers the closest double approximation of ed - 1. |
native public static double | floor(double d) Answers the double conversion of the most positive (i.e. |
native public static double | hypot(double x, double y) Answers sqrt(x2+y2). |
native public static double | log(double d) |
native public static double | log10(double d) Answers the logarithm of the argument and the base is 10. |
native public static double | log1p(double d) Answers the closest double approximation of the natural logarithm of the
sum of the argument and 1. |
public static double | max(double d1, double d2) Answers the most positive (i.e. |
public static float | max(float f1, float f2) Answers the most positive (i.e. |
public static int | max(int i1, int i2) Answers the most positive (i.e. |
public static long | max(long l1, long l2) Answers the most positive (i.e. |
public static double | min(double d1, double d2) Answers the most negative (i.e. |
public static float | min(float f1, float f2) Answers the most negative (i.e. |
public static int | min(int i1, int i2) Answers the most negative (i.e. |
public static long | min(long l1, long l2) Answers the most negative (i.e. |
native public static double | pow(double d1, double d2) Answers the closest double approximation of the result of raising the
first argument to the power of the second.
Parameters: d1 - the base of the operation. Parameters: d2 - the exponent of the operation. |
public static double | random() Returns a pseudo-random number between 0.0 and 1.0. |
native public static double | rint(double d) Answers the double conversion of the result of rounding the argument to
an integer. |
public static long | round(double d) Answers the result of rounding the argument to an integer. |
public static int | round(float f) Answers the result of rounding the argument to an integer. |
public static double | signum(double d) Answers the signum function of the argument. |
public static float | signum(float f) Answers the signum function of the argument. |
native public static double | sin(double d) |
native public static double | sinh(double d) Answers the closest double approximation of the hyperbolic sine of the
argument. |
native public static double | sqrt(double d) |
native public static double | tan(double d) |
native public static double | tanh(double d) Answers the closest double approximation of the hyperbolic tangent of the
argument. |
public static double | toDegrees(double angrad) |
public static double | toRadians(double angdeg) |
public static double | ulp(double d) Answers the argument's ulp. |
public static float | ulp(float f) Answers the argument's ulp. |