Removed subversion keywords $Id$, $Revision$ and $Date$.

Git does not support subversion keywords expansion.
This commit is contained in:
Luc Maisonobe 2014-09-22 14:02:52 +02:00
parent 3cbfe27376
commit abffaf334c
1066 changed files with 2 additions and 1072 deletions

View File

@ -19,8 +19,6 @@
<!--
"Math" component of the Apache Commons Project
$Id$
$Revision$ $Date$
-->

View File

@ -38,10 +38,8 @@
<!-- Interfaces must be types (not just constants) -->
<module name="InterfaceIsType"/>
<!-- Must have class / interface header comments including scm version -->
<module name="JavadocType">
<property name="versionFormat" value="\$Id.*\$"/>
</module>
<!-- Must have class / interface header comments -->
<module name="JavadocType"/>
<!-- Require method javadocs, allow undeclared RTE -->
<module name="JavadocMethod">

View File

@ -19,7 +19,6 @@
# Shell script to create commons math RCs.
# This script should be run from a fresh checkout of the RC tag.
#
# $Revision$ $Date$
# -----------------------------------------------------------------------------
# Set script variables
version=2.1

View File

@ -23,7 +23,6 @@
# to checkin. Both RELEASE-NOTES.txt and the generated download
# page need to be checked in after review.
#
# $Revision$ $Date$
# ----------------------------------------------------------------------------
mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n]

View File

@ -23,7 +23,6 @@ package org.apache.commons.math3;
* </p>
* @param <T> the type of the field elements
* @see FieldElement
* @version $Id$
* @since 2.0
*/
public interface Field<T> {

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.exception.NullArgumentException;
* Interface representing <a href="http://mathworld.wolfram.com/Field.html">field</a> elements.
* @param <T> the type of the field elements
* @see Field
* @version $Id$
* @since 2.0
*/
public interface FieldElement<T> {

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.exception.DimensionMismatchException;
* <a href="http://mathworld.wolfram.com/Field.html">field</a>.
* @param <T> the type of the field elements
* @see FieldElement
* @version $Id$
* @since 3.2
*/
public interface RealFieldElement<T> extends FieldElement<T> {

View File

@ -21,7 +21,6 @@ package org.apache.commons.math3.analysis;
* An interface representing a bivariate real function.
*
* @since 2.1
* @version $Id$
*/
public interface BivariateFunction {
/**

View File

@ -20,7 +20,6 @@ package org.apache.commons.math3.analysis;
/**
* Extension of {@link MultivariateFunction} representing a differentiable
* multivariate real function.
* @version $Id$
* @since 2.0
* @deprecated as of 3.1 replaced by {@link org.apache.commons.math3.analysis.differentiation.MultivariateDifferentiableFunction}
*/

View File

@ -20,7 +20,6 @@ package org.apache.commons.math3.analysis;
/**
* Extension of {@link MultivariateVectorFunction} representing a differentiable
* multivariate vectorial function.
* @version $Id$
* @since 2.0
* @deprecated as of 3.1 replaced by {@link org.apache.commons.math3.analysis.differentiation.MultivariateDifferentiableVectorFunction}
*/

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* Extension of {@link UnivariateFunction} representing a differentiable univariate real function.
*
* @version $Id$
* @deprecated as of 3.1 replaced by {@link org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction}
*/
@Deprecated

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* Extension of {@link UnivariateMatrixFunction} representing a differentiable univariate matrix function.
*
* @version $Id$
* @since 2.0
* @deprecated as of 3.1 replaced by {@link org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableMatrixFunction}
*/

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* Extension of {@link UnivariateVectorFunction} representing a differentiable univariate vectorial function.
*
* @version $Id$
* @since 2.0
* @deprecated as of 3.1 replaced by {@link org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableVectorFunction}
*/

View File

@ -30,7 +30,6 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
/**
* Utilities for manipulating function objects.
*
* @version $Id$
* @since 3.0
*/
public class FunctionUtils {

View File

@ -20,7 +20,6 @@ package org.apache.commons.math3.analysis;
/**
* An interface representing a multivariate real function.
*
* @version $Id$
* @since 2.0
*/
public interface MultivariateFunction {

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* An interface representing a multivariate matrix function.
* @version $Id$
* @since 2.0
*/
public interface MultivariateMatrixFunction {

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* An interface representing a multivariate vectorial function.
* @version $Id$
* @since 2.0
*/
public interface MultivariateVectorFunction {

View File

@ -22,7 +22,6 @@ package org.apache.commons.math3.analysis;
* variable plus some extra parameters.
*
* @since 3.0
* @version $Id$
*/
public interface ParametricUnivariateFunction {
/**

View File

@ -21,7 +21,6 @@ package org.apache.commons.math3.analysis;
* An interface representing a trivariate real function.
*
* @since 2.2
* @version $Id$
*/
public interface TrivariateFunction {
/**

View File

@ -63,7 +63,6 @@ package org.apache.commons.math3.analysis;
* As shown, the exception is local to the user's code and it is guaranteed
* that Apache Commons Math will not catch it.
*
* @version $Id$
*/
public interface UnivariateFunction {
/**

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* An interface representing a univariate matrix function.
*
* @version $Id$
* @since 2.0
*/
public interface UnivariateMatrixFunction {

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis;
/**
* An interface representing a univariate vectorial function.
*
* @version $Id$
* @since 2.0
*/
public interface UnivariateVectorFunction {

View File

@ -122,7 +122,6 @@ import org.apache.commons.math3.util.MathArrays;
* double dPdZdZ = product[compiler.getPartialDerivativeIndex(0, 0, 2)];
* </p>
* @see DerivativeStructure
* @version $Id$
* @since 3.1
*/
public class DSCompiler {

View File

@ -56,7 +56,6 @@ import org.apache.commons.math3.util.MathUtils;
* differentiator}.</p>
* <p>Instances of this class are guaranteed to be immutable.</p>
* @see DSCompiler
* @version $Id$
* @since 3.1
*/
public class DerivativeStructure implements RealFieldElement<DerivativeStructure>, Serializable {

View File

@ -65,7 +65,6 @@ import org.apache.commons.math3.util.FastMath;
* This example shows that the small step size is really bad, even simply
* for second order derivative!
* </p>
* @version $Id$
* @since 3.1
*/
public class FiniteDifferencesDifferentiator

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.analysis.MultivariateVectorFunction;
* The vectorial components of the function represent the derivatives
* with respect to each function parameters.
* </p>
* @version $Id$
* @since 3.1
*/
public class GradientFunction implements MultivariateVectorFunction {

View File

@ -25,7 +25,6 @@ import org.apache.commons.math3.analysis.MultivariateMatrixFunction;
* value and the number of columns is equal to the number of free parameters of
* the underlying function.
* </p>
* @version $Id$
* @since 3.1
*/
public class JacobianFunction implements MultivariateMatrixFunction {

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.exception.MathIllegalArgumentException;
/**
* Extension of {@link MultivariateFunction} representing a
* multivariate differentiable real function.
* @version $Id$
* @since 3.1
*/
public interface MultivariateDifferentiableFunction extends MultivariateFunction {

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.exception.MathIllegalArgumentException;
/**
* Extension of {@link MultivariateVectorFunction} representing a
* multivariate differentiable vectorial function.
* @version $Id$
* @since 3.1
*/
public interface MultivariateDifferentiableVectorFunction

View File

@ -40,7 +40,6 @@ import org.apache.commons.math3.util.Precision;
* {@link DerivativeStructure} and use less memory.
* </p>
*
* @version $Id$
* @since 3.3
*/
public class SparseGradient implements RealFieldElement<SparseGradient>, Serializable {

View File

@ -26,7 +26,6 @@ import org.apache.commons.math3.exception.DimensionMismatchException;
* @see UnivariateDifferentiableFunction
* @see UnivariateFunctionDifferentiator
* @since 3.1
* @version $Id$
*/
public interface UnivariateDifferentiableFunction extends UnivariateFunction {

View File

@ -22,7 +22,6 @@ import org.apache.commons.math3.exception.MathIllegalArgumentException;
/**
* Extension of {@link UnivariateMatrixFunction} representing a univariate differentiable matrix function.
*
* @version $Id$
* @since 3.1
*/
public interface UnivariateDifferentiableMatrixFunction

View File

@ -22,7 +22,6 @@ import org.apache.commons.math3.exception.MathIllegalArgumentException;
/**
* Extension of {@link UnivariateVectorFunction} representing a univariate differentiable vectorial function.
*
* @version $Id$
* @since 3.1
*/
public interface UnivariateDifferentiableVectorFunction

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis.differentiation;
import org.apache.commons.math3.analysis.UnivariateFunction;
/** Interface defining the function differentiation operation.
* @version $Id$
* @since 3.1
*/
public interface UnivariateFunctionDifferentiator {

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis.differentiation;
import org.apache.commons.math3.analysis.UnivariateMatrixFunction;
/** Interface defining the function differentiation operation.
* @version $Id$
* @since 3.1
*/
public interface UnivariateMatrixFunctionDifferentiator {

View File

@ -19,7 +19,6 @@ package org.apache.commons.math3.analysis.differentiation;
import org.apache.commons.math3.analysis.UnivariateVectorFunction;
/** Interface defining the function differentiation operation.
* @version $Id$
* @since 3.1
*/
public interface UnivariateVectorFunctionDifferentiator {

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* Absolute value function.
*
* @since 3.0
* @version $Id$
*/
public class Abs implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Arc-cosine function.
*
* @since 3.0
* @version $Id$
*/
public class Acos implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic arc-cosine function.
*
* @since 3.0
* @version $Id$
*/
public class Acosh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.analysis.BivariateFunction;
* Add the two operands.
*
* @since 3.0
* @version $Id$
*/
public class Add implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Arc-sine function.
*
* @since 3.0
* @version $Id$
*/
public class Asin implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic arc-sine function.
*
* @since 3.0
* @version $Id$
*/
public class Asinh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Arc-tangent function.
*
* @since 3.0
* @version $Id$
*/
public class Atan implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* Arc-tangent function.
*
* @since 3.0
* @version $Id$
*/
public class Atan2 implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic arc-tangent function.
*
* @since 3.0
* @version $Id$
*/
public class Atanh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Cube root function.
*
* @since 3.0
* @version $Id$
*/
public class Cbrt implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* {@code ceil} function.
*
* @since 3.0
* @version $Id$
*/
public class Ceil implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -25,7 +25,6 @@ import org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiabl
* Constant function.
*
* @since 3.0
* @version $Id$
*/
public class Constant implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Constant. */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Cosine function.
*
* @since 3.0
* @version $Id$
*/
public class Cos implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -26,7 +26,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic cosine function.
*
* @since 3.0
* @version $Id$
*/
public class Cosh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.analysis.BivariateFunction;
* Divide the first operand by the second.
*
* @since 3.0
* @version $Id$
*/
public class Divide implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Exponential function.
*
* @since 3.0
* @version $Id$
*/
public class Exp implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* <code>e<sup>x</sup>-1</code> function.
*
* @since 3.0
* @version $Id$
*/
public class Expm1 implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* {@code floor} function.
*
* @since 3.0
* @version $Id$
*/
public class Floor implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -36,7 +36,6 @@ import org.apache.commons.math3.util.Precision;
* Gaussian</a> function.
*
* @since 3.0
* @version $Id$
*/
public class Gaussian implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Mean. */

View File

@ -32,7 +32,6 @@ import org.apache.commons.math3.util.FastMath;
* simple harmonic oscillator</a> function.
*
* @since 3.0
* @version $Id$
*/
public class HarmonicOscillator implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Amplitude. */

View File

@ -25,7 +25,6 @@ import org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiabl
* Identity function.
*
* @since 3.0
* @version $Id$
*/
public class Identity implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -27,7 +27,6 @@ import org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiabl
* Inverse function.
*
* @since 3.0
* @version $Id$
*/
public class Inverse implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Natural logarithm function.
*
* @since 3.0
* @version $Id$
*/
public class Log implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Base 10 logarithm function.
*
* @since 3.0
* @version $Id$
*/
public class Log10 implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* <code>log(1 + p)</code> function.
*
* @since 3.0
* @version $Id$
*/
public class Log1p implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -33,7 +33,6 @@ import org.apache.commons.math3.util.FastMath;
* Generalised logistic</a> function.
*
* @since 3.0
* @version $Id$
*/
public class Logistic implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Lower asymptote. */

View File

@ -34,7 +34,6 @@ import org.apache.commons.math3.util.FastMath;
* It is the inverse of the {@link Sigmoid sigmoid} function.
*
* @since 3.0
* @version $Id$
*/
public class Logit implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Lower bound. */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* Maximum function.
*
* @since 3.0
* @version $Id$
*/
public class Max implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* Minimum function.
*
* @since 3.0
* @version $Id$
*/
public class Min implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -25,7 +25,6 @@ import org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiabl
* Minus function.
*
* @since 3.0
* @version $Id$
*/
public class Minus implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.analysis.BivariateFunction;
* Multiply the two operands.
*
* @since 3.0
* @version $Id$
*/
public class Multiply implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* Power function.
*
* @since 3.0
* @version $Id$
*/
public class Pow implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Power function.
*
* @since 3.0
* @version $Id$
*/
public class Power implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Power. */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* {@code rint} function.
*
* @since 3.0
* @version $Id$
*/
public class Rint implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -37,7 +37,6 @@ import org.apache.commons.math3.util.FastMath;
* by the {@link Logistic} class.
*
* @since 3.0
* @version $Id$
*/
public class Sigmoid implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** Lower asymptote. */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* {@code signum} function.
*
* @since 3.0
* @version $Id$
*/
public class Signum implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -26,7 +26,6 @@ import org.apache.commons.math3.util.FastMath;
* Sine function.
*
* @since 3.0
* @version $Id$
*/
public class Sin implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -34,7 +34,6 @@ import org.apache.commons.math3.util.FastMath;
* </code></pre>
*
* @since 3.0
* @version $Id$
*/
public class Sinc implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/**

View File

@ -26,7 +26,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic sine function.
*
* @since 3.0
* @version $Id$
*/
public class Sinh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Square-root function.
*
* @since 3.0
* @version $Id$
*/
public class Sqrt implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -30,7 +30,6 @@ import org.apache.commons.math3.util.MathArrays;
* Step function</a>.
*
* @since 3.0
* @version $Id$
*/
public class StepFunction implements UnivariateFunction {
/** Abscissae. */

View File

@ -23,7 +23,6 @@ import org.apache.commons.math3.analysis.BivariateFunction;
* Subtract the second operand from the first.
*
* @since 3.0
* @version $Id$
*/
public class Subtract implements BivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Tangent function.
*
* @since 3.0
* @version $Id$
*/
public class Tan implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.FastMath;
* Hyperbolic tangent function.
*
* @since 3.0
* @version $Id$
*/
public class Tanh implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
/** {@inheritDoc} */

View File

@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
* {@code ulp} function.
*
* @since 3.0
* @version $Id$
*/
public class Ulp implements UnivariateFunction {
/** {@inheritDoc} */

View File

@ -30,7 +30,6 @@ import org.apache.commons.math3.util.MathUtils;
/**
* Provide a default implementation for several generic functions.
*
* @version $Id$
* @since 1.2
*/
public abstract class BaseAbstractUnivariateIntegrator implements UnivariateIntegrator {

View File

@ -41,7 +41,6 @@ import org.apache.commons.math3.util.FastMath;
* <a href="http://en.wikipedia.org/w/index.php?title=Numerical_integration#Integrals_over_infinite_intervals">
* here</a> should be avoided when using this class.
*
* @version $Id$
* @since 3.1
*/

View File

@ -47,7 +47,6 @@ import org.apache.commons.math3.util.FastMath;
* &prod; (x-x<sub>k</sub>)/(x<sub>i</sub>-x<sub>k</sub>) for k != i.
* </p>
* <p>
* @version $Id$
* @since 1.2
* @deprecated As of 3.1 (to be removed in 4.0). Please use
* {@link IterativeLegendreGaussIntegrator} instead.

View File

@ -32,7 +32,6 @@ import org.apache.commons.math3.util.FastMath;
* <p>
* The function should be integrable.</p>
*
* @version $Id$
* @since 3.3
*/
public class MidPointIntegrator extends BaseAbstractUnivariateIntegrator {

View File

@ -33,7 +33,6 @@ import org.apache.commons.math3.util.FastMath;
* rule to remove error terms less than order O(N^(-2k)). Simpson's rule
* is a special case of k = 2.</p>
*
* @version $Id$
* @since 1.2
*/
public class RombergIntegrator extends BaseAbstractUnivariateIntegrator {

View File

@ -32,7 +32,6 @@ import org.apache.commons.math3.util.FastMath;
* This implementation employs the basic trapezoid rule to calculate Simpson's
* rule.</p>
*
* @version $Id$
* @since 1.2
*/
public class SimpsonIntegrator extends BaseAbstractUnivariateIntegrator {

View File

@ -32,7 +32,6 @@ import org.apache.commons.math3.util.FastMath;
* <p>
* The function should be integrable.</p>
*
* @version $Id$
* @since 1.2
*/
public class TrapezoidIntegrator extends BaseAbstractUnivariateIntegrator {

View File

@ -25,7 +25,6 @@ import org.apache.commons.math3.exception.TooManyEvaluationsException;
/**
* Interface for univariate real integration algorithms.
*
* @version $Id$
* @since 1.2
*/
public interface UnivariateIntegrator {

View File

@ -32,7 +32,6 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
* the quadrature rules.
*
* @since 3.1
* @version $Id$
*/
public abstract class BaseRuleFactory<T extends Number> {
/** List of points and weights, indexed by the order of the rule. */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.Pair;
* function.
*
* @since 3.1
* @version $Id$
*/
public class GaussIntegrator {
/** Nodes. */

View File

@ -27,7 +27,6 @@ import org.apache.commons.math3.util.Pair;
* used by the {@link GaussIntegrator Gaussian integration rule}.
*
* @since 3.1
* @version $Id$
*/
public class GaussIntegratorFactory {
/** Generator of Gauss-Legendre integrators. */

View File

@ -48,7 +48,6 @@ import org.apache.commons.math3.util.FastMath;
* </quote>
*
* @since 3.3
* @version $Id$
*/
public class HermiteRuleFactory extends BaseRuleFactory<Double> {
/** &pi;<sup>1/2</sup> */

View File

@ -31,7 +31,6 @@ import org.apache.commons.math3.util.Pair;
* Abramowitz and Stegun, 1964</a>.
*
* @since 3.1
* @version $Id$
*/
public class LegendreHighPrecisionRuleFactory extends BaseRuleFactory<BigDecimal> {
/** Settings for enhanced precision computations. */

View File

@ -28,7 +28,6 @@ import org.apache.commons.math3.util.Pair;
* Abramowitz and Stegun, 1964</a>.
*
* @since 3.1
* @version $Id$
*/
public class LegendreRuleFactory extends BaseRuleFactory<Double> {
/** {@inheritDoc} */

View File

@ -27,7 +27,6 @@ import org.apache.commons.math3.util.Pair;
* This allows to reduce numerical errors.
*
* @since 3.3
* @version $Id$
*/
public class SymmetricGaussIntegrator extends GaussIntegrator {
/**

View File

@ -30,7 +30,6 @@ import org.apache.commons.math3.util.MathArrays;
* bicubic spline interpolation</a>.
*
* @since 2.1
* @version $Id$
*/
public class BicubicSplineInterpolatingFunction
implements BivariateFunction {
@ -432,7 +431,6 @@ public class BicubicSplineInterpolatingFunction
/**
* 2D-spline function.
*
* @version $Id$
*/
class BicubicSplineFunction implements BivariateFunction {
/** Number of points. */

View File

@ -27,7 +27,6 @@ import org.apache.commons.math3.util.MathArrays;
/**
* Generates a bicubic interpolating function.
*
* @version $Id$
* @since 2.2
*/
public class BicubicSplineInterpolator

View File

@ -26,7 +26,6 @@ import org.apache.commons.math3.exception.NumberIsTooSmallException;
* Interface representing a bivariate real interpolating function where the
* sample points must be specified on a regular grid.
*
* @version $Id$
*/
public interface BivariateGridInterpolator {
/**

View File

@ -33,7 +33,6 @@ import org.apache.commons.math3.exception.NonMonotonicSequenceException;
* The actual code of Neville's evaluation is in PolynomialFunctionLagrangeForm,
* this class provides an easy-to-use interface to it.</p>
*
* @version $Id$
* @since 1.2
*/
public class DividedDifferenceInterpolator

Some files were not shown because too many files have changed in this diff Show More