Removed subversion keywords $Id$, $Revision$ and $Date$.
Git does not support subversion keywords expansion.
This commit is contained in:
parent
3cbfe27376
commit
abffaf334c
|
@ -19,8 +19,6 @@
|
|||
|
||||
<!--
|
||||
"Math" component of the Apache Commons Project
|
||||
$Id$
|
||||
$Revision$ $Date$
|
||||
-->
|
||||
|
||||
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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> {
|
||||
|
|
|
@ -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> {
|
||||
|
|
|
@ -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> {
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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}
|
||||
*/
|
||||
|
|
|
@ -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}
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
*/
|
||||
|
|
|
@ -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}
|
||||
*/
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -22,7 +22,6 @@ package org.apache.commons.math3.analysis;
|
|||
* variable plus some extra parameters.
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public interface ParametricUnivariateFunction {
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* Maximum function.
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Max implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* Minimum function.
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Min implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* Power function.
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Pow implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* </code></pre>
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sinc implements UnivariateDifferentiableFunction, DifferentiableUnivariateFunction {
|
||||
/**
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
||||
|
|
|
@ -47,7 +47,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* ∏ (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.
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -28,7 +28,6 @@ import org.apache.commons.math3.util.Pair;
|
|||
* function.
|
||||
*
|
||||
* @since 3.1
|
||||
* @version $Id$
|
||||
*/
|
||||
public class GaussIntegrator {
|
||||
/** Nodes. */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -48,7 +48,6 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* </quote>
|
||||
*
|
||||
* @since 3.3
|
||||
* @version $Id$
|
||||
*/
|
||||
public class HermiteRuleFactory extends BaseRuleFactory<Double> {
|
||||
/** π<sup>1/2</sup> */
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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} */
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -27,7 +27,6 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
/**
|
||||
* Generates a bicubic interpolating function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 2.2
|
||||
*/
|
||||
public class BicubicSplineInterpolator
|
||||
|
|
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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
Loading…
Reference in New Issue