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
This commit is contained in:
Phil Steitz 2009-12-29 20:02:37 +00:00
parent 6faddc04de
commit e193fc40fd
1 changed files with 2 additions and 2 deletions

View File

@ -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);