Mathematical functions and constants.
System.math.range: Object representing a range of numbers.E: ELN10: LN10LN2: LN2LOG10E: LOG10ELOG2E: LOG2EONE_PI: ONE_PIPI: PIPI_2: PI_2PI_4: PI_4SQRT1_2: SQRT1_2SQRT2: SQRT2TWO_PI: TWO_PITWO_SQRTPI: TWO_SQRTPIacos(x): Returns the arccosine of x.x: The input to the function.acosh(x): Returns the inverse hyperbolic cosine of x.x: The input to the function.asin(x): Returns the arcsine of x.x: The input to the function.asinh(x): Returns the inverse hyperbolic sine of x.x: The input to the function.atan(x): Returns the arctangent of x.x: The input to the function.atan2(x, y): Returns the arctangent of y/x.x: The first input to the function.y: The second input to the function.atanh(x): Returns the inverse hyperbolic tangent of x.x: The input to the function.cbrt(x): Returns the cubic root of x.x: The input to the function.ceil(x): Returns the smallest integer not less than x.x: The input to the function.cos(x): Returns the cosine of x.x: The input to the function.cosh(x): Returns the hyperbolic cosine of x.x: The input to the function.erf(x): Returns the error function of x.x: The input to the function.erfc(x): Returns the complimentary error function of x.x: The input to the function.exp(x): Returns the value of e raised to x.x: The input to the function.fabs(x): Returns the absolute value of x.x: The input to the function.floor(x): Returns the largest integer not greater than x.x: The input to the function.fmod(x, y): Returns the floating-point remainder of x/y.x: The first input to the function.y: The second input to the function.hypot(x, y): Returns sqrt(x*x + y*y).x: The first input to the function.y: The second input to the function.ilogb(x): Returns the exponent of x (as integer).x: The input to the function.isnan(x): Returns whether the given number is NaN.x: The input to the function.j0(x): Returns the Bessel function of the first kind (order 0) of x.x: The input to the function.j1(x): Returns the Bessel function of the first kind (order 1) of x.x: The input to the function.lgamma(x): Returns the log_e of gamma(|x|).x: The input to the function.log(x): Returns the natural logarithm of x.x: The input to the function.log10(x): Returns the logarithm base 10 of x.x: The input to the function.logb(x): Returns the exponent of x (as floating-point).x: The input to the function.nextafter(x, y): Returns the next representable number from x in direction y.x: The first input to the function.y: The second input to the function.pow(x, y): Returns x raised to the power of y.x: The first input to the function.y: The second input to the function.remainder(x, y): Returns the remainder of x/y.x: The first input to the function.y: The second input to the function.rint(x): Returns x rounded to an integer.x: The input to the function.scalb(x, y): Returns the value of x*r^y.x: The first input to the function.y: The second input to the function.sin(x): Returns the sine of x.x: The input to the function.sinh(x): Returns the hyperbolic sine of x.x: The input to the function.sqrt(x): Returns the square root of x.x: The input to the function.tan(x): Returns the tangent of x.x: The input to the function.tanh(x): Returns the hyperbolic tangent of x.x: The input to the function.y0(x): Returns the Bessel function of the second kind (order 0) of x.x: The input to the function.y1(x): Returns the Bessel function of the second kind (order 1) of x.x: The input to the function.