Java java.lang StrictMath fields, constructors, methods, implement or subclass

Example usage for Java java.lang StrictMath fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.lang StrictMath.

The text is from its open source code.

Field

doubleE
The double value that is closer than any other to e, the base of the natural logarithms.
doublePI
The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter.

Method

intabs(int a)
Returns the absolute value of an int value.
longabs(long a)
Returns the absolute value of a long value.
floatabs(float a)
Returns the absolute value of a float value.
doubleabs(double a)
Returns the absolute value of a double value.
doubleacos(double a)
Returns the arc cosine of a value; the returned angle is in the range 0.0 through pi.
doubleasin(double a)
Returns the arc sine of a value; the returned angle is in the range -pi/2 through pi/2.
doubleatan(double a)
Returns the arc tangent of a value; the returned angle is in the range -pi/2 through pi/2.
doubleatan2(double y, double x)
Returns the angle theta from the conversion of rectangular coordinates ( x ,  y ) to polar coordinates (r, theta).
doublecbrt(double a)
Returns the cube root of a double value.
doubleceil(double a)
Returns the smallest (closest to negative infinity) double value that is greater than or equal to the argument and is equal to a mathematical integer.
doublecopySign(double magnitude, double sign)
Returns the first floating-point argument with the sign of the second floating-point argument.
floatcopySign(float magnitude, float sign)
Returns the first floating-point argument with the sign of the second floating-point argument.
doublecos(double a)
Returns the trigonometric cosine of an angle.
doublecosh(double x)
Returns the hyperbolic cosine of a double value.
doubleexp(double a)
Returns Euler's number e raised to the power of a double value.
doubleexpm1(double x)
Returns ex -1.
doublefloor(double a)
Returns the largest (closest to positive infinity) double value that is less than or equal to the argument and is equal to a mathematical integer.
intgetExponent(float f)
Returns the unbiased exponent used in the representation of a float .
intgetExponent(double d)
Returns the unbiased exponent used in the representation of a double .
doublehypot(double x, double y)
Returns sqrt(x2 +y2) without intermediate overflow or underflow.
doubleIEEEremainder(double f1, double f2)
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
doublelog(double a)
Returns the natural logarithm (base e) of a double value.
doublelog10(double a)
Returns the base 10 logarithm of a double value.
doublelog1p(double x)
Returns the natural logarithm of the sum of the argument and 1.
intmax(int a, int b)
Returns the greater of two int values.
longmax(long a, long b)
Returns the greater of two long values.
floatmax(float a, float b)
Returns the greater of two float values.
doublemax(double a, double b)
Returns the greater of two double values.
intmin(int a, int b)
Returns the smaller of two int values.
longmin(long a, long b)
Returns the smaller of two long values.
floatmin(float a, float b)
Returns the smaller of two float values.
doublemin(double a, double b)
Returns the smaller of two double values.
doublenextAfter(double start, double direction)
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
floatnextAfter(float start, double direction)
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
doublenextUp(double d)
Returns the floating-point value adjacent to d in the direction of positive infinity.
floatnextUp(float f)
Returns the floating-point value adjacent to f in the direction of positive infinity.
doublepow(double a, double b)
Returns the value of the first argument raised to the power of the second argument.
doublerandom()
Returns a double value with a positive sign, greater than or equal to 0.0 and less than 1.0 .
doublerint(double a)
Returns the double value that is closest in value to the argument and is equal to a mathematical integer.
intround(float a)
Returns the closest int to the argument, with ties rounding to positive infinity.
longround(double a)
Returns the closest long to the argument, with ties rounding to positive infinity.
doublescalb(double d, int scaleFactor)
Returns d × 2 scaleFactor rounded as if performed by a single correctly rounded floating-point multiply to a member of the double value set.
floatscalb(float f, int scaleFactor)
Returns f × 2 scaleFactor rounded as if performed by a single correctly rounded floating-point multiply to a member of the float value set.
doublesignum(double d)
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.
floatsignum(float f)
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.
doublesin(double a)
Returns the trigonometric sine of an angle.
doublesinh(double x)
Returns the hyperbolic sine of a double value.
doublesqrt(double a)
Returns the correctly rounded positive square root of a double value.
doubletan(double a)
Returns the trigonometric tangent of an angle.
doubletanh(double x)
Returns the hyperbolic tangent of a double value.
doubletoDegrees(double angrad)
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
doubletoRadians(double angdeg)
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
doubleulp(double d)
Returns the size of an ulp of the argument.
floatulp(float f)
Returns the size of an ulp of the argument.