Native methods of the Java API class java.lang.Math.
double java_lang_Math_sin(double v)
Trigonometric sin function.
Argumentsdouble java_lang_Math_cos(double v)
Trigonometric cos function.
Argumentsdouble java_lang_Math_tan(double v)
Trigonometric tan function.
Argumentsdouble java_lang_Math_asin(double v)
Trigonometric arcsin function.
Argumentsdouble java_lang_Math_acos(double v)
Trigonometric arccos function.
Argumentsdouble java_lang_Math_atan(double v)
Trigonometric arctan function.
Argumentsdouble java_lang_Math_exp(double v)
Returns the exponential number e raised to the power of a double value.
Argumentsdouble java_lang_Math_log(double v)
Returns the natural logarithm (base e) of a double value.
Argumentsdouble java_lang_Math_sqrt(double v)
Returns the square root of a double value.
Argumentsdouble java_lang_Math_IEEEremainder(double v1, double v2)
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
Argumentsdouble 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.
Argumentsdouble 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.
Argumentsdouble java_lang_Math_rint(double v)
Returns the closest integer to the argument.
Argumentsdouble java_lang_Math_atan2(double v1, double v2)
Converts rectangular coordinates (x1, x2) to polar (r, theta).
Argumentsdouble java_lang_Math_pow(double v1, double v2)
Returns of value of the first argument raised to the power of the second argument.
Arguments