Author: pietsch
Date: Wed Aug 24 15:27:44 2005
New Revision: 239953

URL: http://svn.apache.org/viewcvs?rev=239953&view=rev
Log:
Comment changes (#36211)
Contributed by: Xiaogang Zhang

Modified:
    
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/RombergIntegrator.java
    
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/SimpsonIntegrator.java
    
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/TrapezoidIntegrator.java

Modified: 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/RombergIntegrator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/RombergIntegrator.java?rev=239953&r1=239952&r2=239953&view=diff
==============================================================================
--- 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/RombergIntegrator.java
 (original)
+++ 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/RombergIntegrator.java
 Wed Aug 24 15:27:44 2005
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a 
href="http://mathworld.wolfram.com/RombergIntegration.html";>
- * Romberg Algorithm</a> for integrating of real univariate functions. For
+ * Romberg Algorithm</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -38,7 +38,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public RombergIntegrator(UnivariateRealFunction f) {
         super(f, 32);

Modified: 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/SimpsonIntegrator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/SimpsonIntegrator.java?rev=239953&r1=239952&r2=239953&view=diff
==============================================================================
--- 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/SimpsonIntegrator.java
 (original)
+++ 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/SimpsonIntegrator.java
 Wed Aug 24 15:27:44 2005
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a href="http://mathworld.wolfram.com/SimpsonsRule.html";>
- * Simpson's Rule</a> for integrating of real univariate functions. For
+ * Simpson's Rule</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -37,7 +37,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public SimpsonIntegrator(UnivariateRealFunction f) {
         super(f, 64);

Modified: 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/TrapezoidIntegrator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/TrapezoidIntegrator.java?rev=239953&r1=239952&r2=239953&view=diff
==============================================================================
--- 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/TrapezoidIntegrator.java
 (original)
+++ 
jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/TrapezoidIntegrator.java
 Wed Aug 24 15:27:44 2005
@@ -20,7 +20,7 @@
 
 /**
  * Implements the <a href="http://mathworld.wolfram.com/TrapezoidalRule.html";>
- * Trapezoidal Rule</a> for integrating of real univariate functions. For
+ * Trapezoidal Rule</a> for integration of real univariate functions. For
  * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
  * chapter 3.
  * <p>
@@ -39,7 +39,7 @@
     /**
      * Construct an integrator for the given function.
      * 
-     * @param f function to solve
+     * @param f function to integrate
      */
     public TrapezoidIntegrator(UnivariateRealFunction f) {
         super(f, 64);



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to