math:abs($x as xs:double) xs:double
Calculates the absolute value (distance from zero) of a value or expression
Returns the absolute value (distance from zero) of a value or expression
math:acos($x as xs:double) xs:double
Returns the arc cosine of an angle, in the range of 0.0 through pi.
Returns the result
math:asin($x as xs:double) xs:double
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
Returns result
math:atan($x as xs:double) xs:double
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
Returns the result
math:atan2($y as xs:double, $x as xs:double) xs:double
Returns the angle theta from the conversion of rectangular coordinates (x, y) to polar coordinates (r, theta).
Returns the theta component of the point (r, theta) in polar coordinates that corresponds to the point (x, y) in Cartesian coordinates.
math:ceil($x as xs:double) xs:double
Returns the smallest (closest to negative infinity) value that is not less than the argument and is equal to a mathematical integer.
Returns result
math:cos($x as xs:double) xs:double
Returns the trigonometric cosine of an angle.
Returns the cosine
math:degrees($radians as xs:double) xs:double
Converts angle in radians to degrees.
Returns the degrees
math:e() xs:double
Returns base of the natural logarithms, e.
Returns the value of e
math:exp($x as xs:double) xs:double
Calculates e (the Euler Constant) raised to the power of a value or expression
Returns e (the Euler Constant) raised to the power of a value or expression
math:floor($x as xs:double) xs:double
Returns the largest (closest to positive infinity) value that is not greater than the argument and is equal to a mathematical integer.
Returns the floor value
math:log($x as xs:double) xs:double
Returns the natural logarithm (base e) of a number.
Returns the log
math:pi() xs:double
Returns the value of pi
math:power($value as xs:double, $power as xs:double) xs:double
Returns the value of $value raised to the power of $power.
Returns the result
math:radians($degrees as xs:double) xs:double
Converts angle in degrees to radians.
Returns the radians
math:random() xs:double
Returns a value greater than or equal to 0.0 and less than 1.0.
Returns a random value
math:round($x as xs:double) xs:double
Returns the double value that is closest to a integer.
Returns the rounded value
math:sin($x as xs:double) xs:double
Returns the trigonometric sine of an angle.
Returns the sine
math:sqrt($x as xs:double) xs:double
Returns the correctly rounded positive square root of a number.
Returns the square root of $x
math:tan($radians as xs:double) xs:double
Returns the tangent of the number passed as an argument in radians.
Returns the tangent