|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Math
public final class Math
Mathematical functions.
Field Summary | |
---|---|
static double |
E
|
static double |
NaN
|
static double |
PI
|
Method Summary | |
---|---|
static double |
abs(double a)
Returns the absolute value of a double value. |
static int |
abs(int a)
Returns the absolute value of an integer value. |
static double |
acos(double a)
Arc cosine function. |
static double |
asin(double a)
Arc sine function. |
static double |
atan(double x)
Arc tangent function. |
static double |
atan2(double y,
double x)
Arc tangent function valid to the four quadrants y and x can have any value without sigificant precision loss atan2(0,0) returns 0. |
static double |
ceil(double a)
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer. |
static double |
cos(double x)
Cosine function using a Chebyshev-Pade approximation. |
static double |
exp(double a)
Exponential function. |
static double |
floor(double a)
Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer. |
static double |
log(double x)
Natural log function. |
static double |
max(double a,
double b)
Returns the greater of two double values. |
static int |
max(int a,
int b)
Returns the greater of two integer values. |
static double |
min(double a,
double b)
Returns the lesser of two double values. |
static int |
min(int a,
int b)
Returns the lesser of two integer values. |
static double |
pow(double a,
double b)
Power function. |
static double |
random()
Random number generator. |
static int |
round(float a)
Returns the closest int to the argument. |
static double |
sin(double x)
Sine function using a Chebyshev-Pade approximation. |
static double |
sqrt(double x)
Square root - thanks to Paulo Costa for donating the code. |
static double |
tan(double a)
Tangent function. |
static double |
toDegrees(double angrad)
Converts radians to degrees. |
static double |
toRadians(double angdeg)
Converts degrees to radians. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait |
Field Detail |
---|
public static final double E
public static final double PI
public static final double NaN
Method Detail |
---|
public static double ceil(double a)
public static double floor(double a)
public static int round(float a)
public static int min(int a, int b)
public static double min(double a, double b)
public static int max(int a, int b)
public static double max(double a, double b)
public static double random()
public static double exp(double a)
Seems to work better for +ve numbers so force argument to be +ve.
public static double log(double x)
public static double pow(double a, double b)
public static double abs(double a)
public static int abs(int a)
public static double sin(double x)
public static double cos(double x)
public static double sqrt(double x)
public static double tan(double a)
public static double atan(double x)
public static double atan2(double y, double x)
public static double acos(double a)
public static double asin(double a)
public static double toDegrees(double angrad)
public static double toRadians(double angdeg)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |