Home | History | Annotate | Download | only in rank

Lines Matching refs:evaluate

65  * {@code evaluate} methods when several percentiles are to be computed on the same data.
68 * at one call to {@code evaluate} is the same as the data with the cached algorithm
71 * {@code evaluate} on an immutable array, he can save the checking time by calling the
72 * {@code evaluate} methods that do <em>not</em>
93 /** Determines what percentile is computed when evaluate() is activated
161 public double evaluate(final double p) {
162 return evaluate(getDataRef(), p);
191 public double evaluate(final double[] values, final double p) {
193 return evaluate(values, 0, values.length, p);
221 public double evaluate( final double[] values, final int start, final int length) {
222 return evaluate(values, start, length, quantile);
255 public double evaluate(final double[] values, final int begin,
447 * computed when evaluate() is called with no quantile argument).
457 * computed when evaluate() is called with no quantile argument).