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:
parent
b494c9f537
commit
154d4c999f
|
@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
|
|||
|
||||
/**
|
||||
* 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 @@ public class RombergIntegrator extends UnivariateRealIntegratorImpl {
|
|||
/**
|
||||
* Construct an integrator for the given function.
|
||||
*
|
||||
* @param f function to solve
|
||||
* @param f function to integrate
|
||||
*/
|
||||
public RombergIntegrator(UnivariateRealFunction f) {
|
||||
super(f, 32);
|
||||
|
|
|
@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
|
|||
|
||||
/**
|
||||
* 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 @@ public class SimpsonIntegrator extends UnivariateRealIntegratorImpl {
|
|||
/**
|
||||
* Construct an integrator for the given function.
|
||||
*
|
||||
* @param f function to solve
|
||||
* @param f function to integrate
|
||||
*/
|
||||
public SimpsonIntegrator(UnivariateRealFunction f) {
|
||||
super(f, 64);
|
||||
|
|
|
@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
|
|||
|
||||
/**
|
||||
* 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 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
|
|||
/**
|
||||
* Construct an integrator for the given function.
|
||||
*
|
||||
* @param f function to solve
|
||||
* @param f function to integrate
|
||||
*/
|
||||
public TrapezoidIntegrator(UnivariateRealFunction f) {
|
||||
super(f, 64);
|
||||
|
|
Loading…
Reference in New Issue