Interface Math
access this type via: util.Math (provides, requires or uses)
Mathematical utilities.
Functions
dec floor(dec val)
dec ceil(dec val)
dec round(dec val)
dec sqrt(dec val)
dec power(dec val, dec power)
dec rootn(dec val, dec root)
dec log(dec val)
dec natlog(dec val)
dec natexp(dec val)
dec cos(dec val)
dec sin(dec val)
dec tan(dec val)
dec acos(dec val)
dec asin(dec val)
dec atan(dec val)
dec cosh(dec val)
dec sinh(dec val)
dec tanh(dec val)
dec acosh(dec val)
dec asinh(dec val)
dec atanh(dec val)
dec floor(dec val)
Returns the largest integer that is not larger than val.
dec ceil(dec val)
Returns the smallest integer that is not smaller than val.
dec round(dec val)
Returns a rounded version of the input value to the nearest integer.
dec sqrt(dec val)
Returns the square root of a decimal value.
dec power(dec val, dec power)
Returns the given power of a decimal value.
dec rootn(dec val, dec root)
Returns the given root of a decimal value.
dec log(dec val)
Returns the base 10 logarithm of a decimal value.
dec natlog(dec val)
Returns the natural (base e) logarithm of a decimal value.
dec natexp(dec val)
Returns the base e exponential function of a decimal value.
dec cos(dec val)
Returns the cosine of a decimal value supplied in degrees.
dec sin(dec val)
Returns the sine of a decimal value supplied in degrees.
dec tan(dec val)
Returns the tangent of a decimal value supplied in degrees.
dec acos(dec val)
Returns the arc cosine of a decimal value supplied in degrees.
dec asin(dec val)
Returns the arc sine of a decimal value supplied in degrees.
dec atan(dec val)
Returns the arc tangent of a decimal value supplied in degrees.
dec cosh(dec val)
Returns the hyberbolic cosine of a decimal value supplied in degrees.
dec sinh(dec val)
Returns the hyberbolic sine of a decimal value supplied in degrees.
dec tanh(dec val)
Returns the hyberbolic tangent of a decimal value supplied in degrees.
dec acosh(dec val)
Returns the area hyberbolic cosine of a decimal value supplied in degrees.
dec asinh(dec val)
Returns the area hyberbolic sine of a decimal value supplied in degrees.
dec atanh(dec val)
Returns the area hyberbolic tangent of a decimal value supplied in degrees.