From e193fc40fdc85a8bd95eecac7f65595f1cc7dd05 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Tue, 29 Dec 2009 20:02:37 +0000 Subject: [PATCH] Fixed type from r894472. JIRA: MATH-287 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@894474 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/stat/descriptive/WeightedEvaluation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java b/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java index 4b3965401..1da22f6ab 100644 --- a/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java +++ b/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java @@ -30,7 +30,7 @@ public interface WeightedEvaluation { * * @param values input array * @param weights array of weights - * @return the value of the statistic applied to the input array + * @return the value of the weighted statistic applied to the input array */ double evaluate(double[] values, double[] weights); @@ -42,7 +42,7 @@ public interface WeightedEvaluation { * @param weights array of weights * @param begin the index of the first element to include * @param length the number of elements to include - * @return the value of the statistic applied to the included array entries + * @return the value of the weighted statistic applied to the included array entries */ double evaluate(double[] values, double[] weights, int begin, int length);