Comment changes (#36211)

Contributed by: Xiaogang Zhang


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@239953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joerg Pietschmann 2005-08-24 22:27:44 +00:00
parent b494c9f537
commit 154d4c999f
3 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/** /**
* Implements the <a href="http://mathworld.wolfram.com/RombergIntegration.html"> * 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, * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
* chapter 3. * chapter 3.
* <p> * <p>
@ -38,7 +38,7 @@ public class RombergIntegrator extends UnivariateRealIntegratorImpl {
/** /**
* Construct an integrator for the given function. * Construct an integrator for the given function.
* *
* @param f function to solve * @param f function to integrate
*/ */
public RombergIntegrator(UnivariateRealFunction f) { public RombergIntegrator(UnivariateRealFunction f) {
super(f, 32); super(f, 32);

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/** /**
* Implements the <a href="http://mathworld.wolfram.com/SimpsonsRule.html"> * 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, * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
* chapter 3. * chapter 3.
* <p> * <p>
@ -37,7 +37,7 @@ public class SimpsonIntegrator extends UnivariateRealIntegratorImpl {
/** /**
* Construct an integrator for the given function. * Construct an integrator for the given function.
* *
* @param f function to solve * @param f function to integrate
*/ */
public SimpsonIntegrator(UnivariateRealFunction f) { public SimpsonIntegrator(UnivariateRealFunction f) {
super(f, 64); super(f, 64);

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/** /**
* Implements the <a href="http://mathworld.wolfram.com/TrapezoidalRule.html"> * 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, * reference, see <b>Introduction to Numerical Analysis</b>, ISBN 038795452X,
* chapter 3. * chapter 3.
* <p> * <p>
@ -39,7 +39,7 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
/** /**
* Construct an integrator for the given function. * Construct an integrator for the given function.
* *
* @param f function to solve * @param f function to integrate
*/ */
public TrapezoidIntegrator(UnivariateRealFunction f) { public TrapezoidIntegrator(UnivariateRealFunction f) {
super(f, 64); super(f, 64);