| java.lang.Object net.sf.saxon.exslt.Math
Math | abstract public class Math (Code) | | This class implements extension functions in the
http://exslt.org/math namespace.
|
Method Summary | |
public static double | abs(double x) | public static double | acos(double x) | public static double | asin(double x) | public static double | atan(double x) | public static double | atan2(double x, double y) | public static double | constant(XPathContext context, String name, double precision) | public static double | cos(double x) | public static double | exp(double x) | public static Value | highest(SequenceIterator nsv) Get the items with maximum numeric value of the string-value of each of a sequence of items. | public static double | log(double x) | public static Value | lowest(SequenceIterator nsv) Get the items with minimum numeric value of the string-value of each of a sequence of items
The items are returned in the order of the original sequence. | public static double | max(SequenceIterator nsv) | public static double | min(SequenceIterator nsv) | public static double | power(double x, double y) | public static double | random() | public static double | sin(double x) | public static double | sqrt(double x) | public static double | tan(double x) |
abs | public static double abs(double x)(Code) | | Get the absolute value of a numeric value (SStL)
|
acos | public static double acos(double x)(Code) | | Get the arccosine of a numeric value (SStL)
|
asin | public static double asin(double x)(Code) | | Get the arcsine of a numeric value (SStL)
|
atan | public static double atan(double x)(Code) | | Get the arctangent of a numeric value (SStL)
|
atan2 | public static double atan2(double x, double y)(Code) | | Converts rectangular coordinates to polar (SStL)
|
cos | public static double cos(double x)(Code) | | Get the cosine of a numeric value (SStL)
|
exp | public static double exp(double x)(Code) | | Get the exponential of a numeric value (SStL)
|
highest | public static Value highest(SequenceIterator nsv) throws XPathException(Code) | | Get the items with maximum numeric value of the string-value of each of a sequence of items.
The items are returned in the order of the original sequence.
|
log | public static double log(double x)(Code) | | Get the logarithm of a numeric value (SStL)
|
lowest | public static Value lowest(SequenceIterator nsv) throws XPathException(Code) | | Get the items with minimum numeric value of the string-value of each of a sequence of items
The items are returned in the order of the original sequence.
|
power | public static double power(double x, double y)(Code) | | Get the power of two numeric values (SStL)
|
random | public static double random()(Code) | | Get a random numeric value (SStL)
|
sin | public static double sin(double x)(Code) | | Get the sine of a numeric value (SStL)
|
sqrt | public static double sqrt(double x)(Code) | | Get the square root of a numeric value (SStL)
|
tan | public static double tan(double x)(Code) | | Get the tangent of a numeric value (SStL)
|
|
|