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:
Sebastian Bazley 2013-07-18 15:03:25 +00:00
parent a6d222c066
commit c6cba39616
1 changed files with 2 additions and 0 deletions

View File

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