Author: erans
Date: Tue Aug 13 10:46:48 2013
New Revision: 1513430

URL: http://svn.apache.org/r1513430
Log:
MATH-1022
Fixed Javadoc.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Logistic.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Logistic.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Logistic.java?rev=1513430&r1=1513429&r2=1513430&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Logistic.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Logistic.java
 Tue Aug 13 10:46:48 2013
@@ -96,10 +96,15 @@ public class Logistic implements Univari
 
     /**
      * Parametric function where the input array contains the parameters of
-     * the logit function, ordered as follows:
+     * the {@link Logistic#Logistic(double,double,double,double,double,double)
+     * logistic function}, ordered as follows:
      * <ul>
-     *  <li>Lower asymptote</li>
-     *  <li>Higher asymptote</li>
+     *  <li>k</li>
+     *  <li>m</li>
+     *  <li>b</li>
+     *  <li>q</li>
+     *  <li>a</li>
+     *  <li>n</li>
      * </ul>
      */
     public static class Parametric implements ParametricUnivariateFunction {

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java?rev=1513430&r1=1513429&r2=1513430&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Sigmoid.java
 Tue Aug 13 10:46:48 2013
@@ -80,7 +80,8 @@ public class Sigmoid implements Univaria
 
     /**
      * Parametric function where the input array contains the parameters of
-     * the logit function, ordered as follows:
+     * the {@link Sigmoid#Sigmoid(double,double) sigmoid function}, ordered
+     * as follows:
      * <ul>
      *  <li>Lower asymptote</li>
      *  <li>Higher asymptote</li>


Reply via email to