java_lang_Math

Native methods of the Java API class java.lang.Math.



Functions


double java_lang_Math_sin(double v)

Trigonometric sin function.

Arguments Return value

double java_lang_Math_cos(double v)

Trigonometric cos function.

Arguments Return value

double java_lang_Math_tan(double v)

Trigonometric tan function.

Arguments Return value

double java_lang_Math_asin(double v)

Trigonometric arcsin function.

Arguments Return value

double java_lang_Math_acos(double v)

Trigonometric arccos function.

Arguments Return value

double java_lang_Math_atan(double v)

Trigonometric arctan function.

Arguments Return value

double java_lang_Math_exp(double v)

Returns the exponential number e raised to the power of a double value.

Arguments Return value

double java_lang_Math_log(double v)

Returns the natural logarithm (base e) of a double value.

Arguments Return value

double java_lang_Math_sqrt(double v)

Returns the square root of a double value.

Arguments Return value

double java_lang_Math_IEEEremainder(double v1, double v2)

Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.

Arguments Return value

double java_lang_Math_ceil(double v)

Returns the smallest double value that is not less than the argument and is equal to a mathematical integer.

Arguments Return value

double java_lang_Math_floor(double v)

Returns the largest double value that is not greater than the argument and is equal to a mathematical integer.

Arguments Return value

double java_lang_Math_rint(double v)

Returns the closest integer to the argument.

Arguments Return value

double java_lang_Math_atan2(double v1, double v2)

Converts rectangular coordinates (x1, x2) to polar (r, theta).

Arguments Return value

double java_lang_Math_pow(double v1, double v2)

Returns of value of the first argument raised to the power of the second argument.

Arguments Return value
File generated from "Math.c" by autodoc. 19-03-1998 14:58