Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EE7E1101A3 for ; Tue, 3 Sep 2013 21:16:59 +0000 (UTC) Received: (qmail 97596 invoked by uid 500); 3 Sep 2013 21:16:59 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 97511 invoked by uid 500); 3 Sep 2013 21:16:59 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 97504 invoked by uid 99); 3 Sep 2013 21:16:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Sep 2013 21:16:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Sep 2013 21:16:57 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6EED5238888A; Tue, 3 Sep 2013 21:16:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1519851 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat: correlation/StorelessCovariance.java regression/SimpleRegression.java Date: Tue, 03 Sep 2013 21:16:36 -0000 To: commits@commons.apache.org From: tn@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130903211636.6EED5238888A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tn Date: Tue Sep 3 21:16:35 2013 New Revision: 1519851 URL: http://svn.apache.org/r1519851 Log: Added missing since tags. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/regression/SimpleRegression.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java?rev=1519851&r1=1519850&r2=1519851&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java Tue Sep 3 21:16:35 2013 @@ -170,6 +170,7 @@ public class StorelessCovariance extends * * @param sc externally computed StorelessCovariance to add to this * @throws DimensionMismatchException if the dimension of sc does not match this + * @since 3.3 */ public void append(StorelessCovariance sc) throws DimensionMismatchException { if (sc.dimension != dimension) { Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/regression/SimpleRegression.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/regression/SimpleRegression.java?rev=1519851&r1=1519850&r2=1519851&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/regression/SimpleRegression.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/regression/SimpleRegression.java Tue Sep 3 21:16:35 2013 @@ -168,6 +168,7 @@ public class SimpleRegression implements * SAND2008-6212, Sandia National Laboratories.

* * @param reg model to append data from + * @since 3.3 */ public void append(SimpleRegression reg) { if (n == 0) {