math:percentile( $arg as xs:double*, $p as xs:double* ) as xs:double*
Returns a sequence of percentile(s) given a sequence of percentage(s).
The function returns the empty sequence if either $arg
or
$p
is the
empty sequence.
Parameters | |
---|---|
arg | The sequence of values to calculate the percentile(s) on. |
p | The sequence of percentage(s). |
math:percentile((2, 3, 1, 1.1, 2.2, 4),(0.25,0.75)) => 1.05 3.5