The methods of Java.Lang.StrictMath are listed below. For a list of all members, see the StrictMath Members list.
See Also: Inherited members from Java.Lang.Object
static | Abs(double)Returns the absolute value of the argument. | |
static | Abs(int)Returns the absolute value of the argument. | |
static | Abs(long)Returns the absolute value of the argument. | |
static | Abs(float)Returns the absolute value of the argument. | |
static | Acos(double)Returns the closest double approximation of the arc cosine of the argument within the range [0..pi]. | |
static | Asin(double)Returns the closest double approximation of the arc sine of the argument within the range [-pi/2..pi/2]. | |
static | Atan(double)Returns the closest double approximation of the arc tangent of the argument within the range [-pi/2..pi/2]. | |
static | Atan2(double, double)Returns the closest double approximation of the arc tangent of y/x within the range [-pi..pi]. | |
static | Cbrt(double)Returns the closest double approximation of the cube root of the argument. | |
static | Ceil(double)Returns the double conversion of the most negative (closest to negative infinity) integer value greater than or equal to the argument. | |
static | CopySign(double, double)Returns a double with the given magnitude and the sign of sign. | |
static | CopySign(float, float)Returns a float with the given magnitude and the sign of sign. | |
static | Cos(double)Returns the closest double approximation of the cosine of the argument. | |
static | Cosh(double)Returns the closest double approximation of the hyperbolic cosine of the argument. | |
static | Exp(double)Returns the closest double approximation of the raising "e" to the power of the argument. | |
static | Expm1(double)Returns the closest double approximation of ed- 1. | |
static | Floor(double)Returns the double conversion of the most positive (closest to positive infinity) integer less than or equal to the argument. | |
static | GetExponent(double)Returns the exponent of double d. | |
static | GetExponent(float)Returns the exponent of float f. | |
static | Hypot(double, double)Returns sqrt(x2+y2). | |
static | IEEEremainder(double, double)Returns the remainder of dividing x by y using the IEEE 754 rules. | |
static | Log(double)Returns the closest double approximation of the natural logarithm of the argument. | |
static | Log10(double)Returns the closest double approximation of the base 10 logarithm of the argument. | |
static | Log1p(double)Returns the closest double approximation of the natural logarithm of the sum of the argument and 1. | |
static | Max(double, double)Returns the most positive (closest to positive infinity) of the two arguments. | |
static | Max(int, int)Returns the most positive (closest to positive infinity) of the two arguments. | |
static | Max(long, long)Returns the most positive (closest to positive infinity) of the two arguments. | |
static | Max(float, float)Returns the most positive (closest to positive infinity) of the two arguments. | |
static | Min(double, double)Returns the most negative (closest to negative infinity) of the two arguments. | |
static | Min(int, int)Returns the most negative (closest to negative infinity) of the two arguments. | |
static | Min(long, long)Returns the most negative (closest to negative infinity) of the two arguments. | |
static | Min(float, float)Returns the most negative (closest to negative infinity) of the two arguments. | |
static | NextAfter(double, double)Returns the next double after start in the given direction. | |
static | NextAfter(float, double)Returns the next float after start in the given direction. | |
static | NextUp(double)Returns the next double larger than d. | |
static | NextUp(float)Returns the next float larger than f. | |
static | Pow(double, double)Returns the closest double approximation of the result of raising x to the power of y. | |
static | Random()Returns a pseudo-random number between 0.0 (inclusive) and 1.0 (exclusive). | |
static | Rint(double)Returns the double conversion of the result of rounding the argument to an integer. | |
static | Round(double)Returns the result of rounding the argument to an integer. | |
static | Round(float)Returns the result of rounding the argument to an integer. | |
static | Scalb(double, int)Returns d * 2^scaleFactor. | |
static | Scalb(float, int)Returns d * 2^scaleFactor. | |
static | Signum(double)Returns the signum function of the argument. | |
static | Signum(float)Returns the signum function of the argument. | |
static | Sin(double)Returns the closest double approximation of the sine of the argument. | |
static | Sinh(double)Returns the closest double approximation of the hyperbolic sine of the argument. | |
static | Sqrt(double)Returns the closest double approximation of the square root of the argument. | |
static | Tan(double)Returns the closest double approximation of the tangent of the argument. | |
static | Tanh(double)Returns the closest double approximation of the hyperbolic tangent of the argument. | |
static | ToDegrees(double)Returns the measure in degrees of the supplied radian angle. | |
static | ToRadians(double)Returns the measure in radians of the supplied degree angle. | |
static | Ulp(double)Returns the argument's ulp (unit in the last place). | |
static | Ulp(float)Returns the argument's ulp (unit in the last place). |