Author: psteitz
Date: Tue Dec 29 20:02:37 2009
New Revision: 894474
URL: http://svn.apache.org/viewvc?rev=894474&view=rev
Log:
Fixed type from r894472. JIRA: MATH-287
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java?rev=894474&r1=894473&r2=894474&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/WeightedEvaluation.java
Tue Dec 29 20:02:37 2009
@@ -30,7 +30,7 @@
*
* @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 @@
* @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);