Mark R. Diggory 2003-06-20 21:05:47 +00:00
parent db0b59b9bc
commit 0da1561627
2 changed files with 1 additions and 33 deletions

View File

@ -62,16 +62,6 @@ package org.apache.commons.math.stat;
*/
public abstract class AbstractStoreUnivariate implements StoreUnivariate {
/**
* Returns the most frequently occuring value
* @see org.apache.commons.math.stat.StoreUnivariate#getMode()
*/
public double getMode() {
// Mode depends on a refactor Freq class
String msg = "getMode() is not yet implemented";
throw new UnsupportedOperationException(msg);
}
/**
* Returns the skewness of this collection of values
* @see org.apache.commons.math.stat.StoreUnivariate#getSkewness()

View File

@ -282,26 +282,4 @@ public class StatUtils {
}
return min;
}
/**
* Returns the mode of the values that have been added. The mode is
* the element which occurs with the most frequency
* @return the mode
*/
public static double mode() {
// Mode depends on a refactor Freq class
String msg = "mode() is not yet implemented";
throw new UnsupportedOperationException(msg);
}
/**
* Returns the mode of the values that have been added. The mode is
* the element which occurs with the most frequency
* @return the mode
*/
public static double median(double[] values) {
// Mode depends on a refactor Freq class
String msg = "median() is not yet implemented";
throw new UnsupportedOperationException(msg);
}
}
}