Forgot @since markers
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1504496 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a6d222c066
commit
c6cba39616
|
@ -812,6 +812,7 @@ public final class StatUtils {
|
|||
* @param sample input data
|
||||
* @return array of array of the most frequently occuring element(s) sorted in ascending order.
|
||||
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
||||
* @since 3.3
|
||||
*/
|
||||
public static double[] mode(double[] sample) throws MathIllegalArgumentException {
|
||||
if (sample == null) {
|
||||
|
@ -839,6 +840,7 @@ public final class StatUtils {
|
|||
*
|
||||
* @return array of array of the most frequently occuring element(s) sorted in ascending order.
|
||||
* @throws MathIllegalArgumentException if the indices are invalid or the array is null
|
||||
* @since 3.3
|
||||
*/
|
||||
public static double[] mode(double[] sample, final int begin, final int length) {
|
||||
if (sample == null) {
|
||||
|
|
Loading…
Reference in New Issue