コード例 #1
0
 protected double evaluate(double[] values) throws EvaluationException {
   if (values.length < 1) {
     throw new EvaluationException(ErrorEval.DIV_ZERO);
   }
   return MathX.average(values);
 }