1
0
mirror of https://github.com/apache/commons-math.git synced 2025-03-04 23:49:14 +00:00

Fix id tags and svn:keywords in analysis package.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1364387 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-07-22 18:14:11 +00:00
parent 63bf6a5dcf
commit 30a037d240
19 changed files with 18 additions and 17 deletions

@ -29,8 +29,8 @@ import org.apache.commons.math3.exception.DimensionMismatchException;
* @param <T> Type of the number used to represent the points and weights of
* the quadrature rules.
*
* @version $Id$
* @since 3.1
* @version $Id$
*/
public abstract class BaseRuleFactory<T extends Number> {
/** List of points and weights, indexed by the order of the rule. */

@ -26,8 +26,8 @@ import org.apache.commons.math3.util.Pair;
* {@link #integrate(UnivariateFunction) integrating} a weighted
* function.
*
* @version $Id$
* @since 3.1
* @version $Id$
*/
public class GaussIntegrator {
/** Nodes. */

@ -22,8 +22,8 @@ import org.apache.commons.math3.util.Pair;
* Class that provides different ways to compute the nodes and weights to be
* used by the {@link GaussIntegrator Gaussian integration rule}.
*
* @version $Id$
* @since 3.1
* @version $Id$
*/
public class GaussIntegratorFactory {
/** Generator of Gauss-Legendre integrators. */

@ -28,8 +28,8 @@ import org.apache.commons.math3.util.Pair;
* presented in <a href="http://en.wikipedia.org/wiki/Abramowitz_and_Stegun"
* Abramowitz and Stegun, 1964</a>.
*
* @version $Id$
* @since 3.1
* @version $Id$
*/
public class LegendreHighPrecisionRuleFactory extends BaseRuleFactory<BigDecimal> {
/** Settings for enhanced precision computations. */

@ -26,8 +26,8 @@ import org.apache.commons.math3.util.Pair;
* presented in <a href="http://en.wikipedia.org/wiki/Abramowitz_and_Stegun"
* Abramowitz and Stegun, 1964</a>.
*
* @version $Id$
* @since 3.1
* @version $Id$
*/
public class LegendreRuleFactory extends BaseRuleFactory<Double> {
/**

@ -27,8 +27,8 @@ import org.apache.commons.math3.util.MathArrays;
* <a href="http://en.wikipedia.org/wiki/Bicubic_interpolation">
* bicubic spline interpolation</a>.
*
* @version $Id$
* @since 2.1
* @version $Id$
*/
public class BicubicSplineInterpolatingFunction
implements BivariateFunction {

@ -45,6 +45,7 @@ import org.apache.commons.math3.util.ArithmeticUtils;
* also distributed under the terms of the Apache License V2. Original copyright
* is: Copyright 2002-2012 CS Systèmes d'Information.
* </p>
*
* @version $Id$
* @since 3.1
*/

@ -25,6 +25,7 @@ import org.apache.commons.math3.util.MathArrays;
/**
* Implements a linear function for interpolation of real univariate functions.
*
* @version $Id$
*/
public class LinearInterpolator implements UnivariateInterpolator {

@ -25,8 +25,8 @@ import org.apache.commons.math3.random.UnitSphereRandomVectorGenerator;
* Interpolator that implements the algorithm described in
* <em>William Dudziak</em>'s
* <a href="http://www.dudziak.com/microsphere.pdf">MS thesis</a>.
* @since 2.1
*
* @since 2.1
* @version $Id$
*/
public class MicrosphereInterpolator

@ -48,7 +48,6 @@ import org.apache.commons.math3.util.MathArrays;
* </p>
*
* @version $Id$
*
*/
public class SplineInterpolator implements UnivariateInterpolator {

@ -32,8 +32,8 @@ import org.apache.commons.math3.util.MathArrays;
* <em>Int. J. Numer. Meth. Engng</em> 2005; <b>63</b>:455-471
* </quote>
*
* @version $Id$
* @since 2.2
* @version $Id$
*/
public class TricubicSplineInterpolatingFunction
implements TrivariateFunction {

@ -23,8 +23,8 @@ import org.apache.commons.math3.util.MathArrays;
/**
* Generates a tricubic interpolating function.
*
* @version $Id$
* @since 2.2
* @version $Id$
*/
public class TricubicSplineInterpolator
implements TrivariateGridInterpolator {

@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.TrivariateFunction;
* Interface representing a trivariate real interpolating function where the
* sample points must be specified on a regular grid.
*
* @version $Id$
* @since 2.2
* @version $Id$
*/
public interface TrivariateGridInterpolator {
/**

@ -24,8 +24,8 @@ import org.apache.commons.math3.analysis.UnivariateFunction;
* Provide a default implementation for several functions useful to generic
* solvers.
*
* @version $Id$
* @since 3.0
* @version $Id$
*/
public abstract class AbstractDifferentiableUnivariateSolver
extends BaseAbstractUnivariateSolver<DifferentiableUnivariateFunction>

@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.polynomials.PolynomialFunction;
/**
* Base class for solvers.
*
* @version $Id$
* @since 3.0
* @version $Id$
*/
public abstract class AbstractPolynomialSolver
extends BaseAbstractUnivariateSolver<PolynomialFunction>

@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.UnivariateFunction;
/**
* Base class for solvers.
*
* @version $Id$
* @since 3.0
* @version $Id$
*/
public abstract class AbstractUnivariateSolver
extends BaseAbstractUnivariateSolver<UnivariateFunction>

@ -30,8 +30,8 @@ import org.apache.commons.math3.util.MathUtils;
*
* @param <FUNC> Type of function to solve.
*
* @version $Id$
* @since 2.0
* @version $Id$
*/
public abstract class BaseAbstractUnivariateSolver<FUNC extends UnivariateFunction>
implements BaseUnivariateSolver<FUNC> {

@ -29,8 +29,8 @@ import org.apache.commons.math3.analysis.UnivariateFunction;
* DifferentiableUnivariateSolver}.
* @param <FUNC> Type of function to solve.
*
* @version $Id$
* @since 3.0
* @version $Id$
* @see UnivariateSolver
* @see PolynomialSolver
* @see DifferentiableUnivariateSolver

@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.polynomials.PolynomialFunction;
* Interface for (polynomial) root-finding algorithms.
* Implementations will search for only one zero in the given interval.
*
* @version $Id$
* @since 3.0
* @version $Id$
*/
public interface PolynomialSolver
extends BaseUnivariateSolver<PolynomialFunction> {}