svn:keywords correction

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@155427 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dirk Verbeeck 2005-02-26 13:11:52 +00:00
parent 56305e9807
commit 9cdfd53d3b
244 changed files with 968 additions and 968 deletions

View File

@ -15,7 +15,7 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.57 $ $Date$ --> <!-- $Revision$ $Date$ -->
<project> <project>
<pomVersion>3</pomVersion> <pomVersion>3</pomVersion>

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.analysis;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public abstract class UnivariateRealFunctionProxy public abstract class UnivariateRealFunctionProxy
implements UnivariateRealFunction { implements UnivariateRealFunction {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.analysis.derivative.ForwardDifferenceDerivative;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public class UnivariateRealFunctionUtils { public class UnivariateRealFunctionUtils {

View File

@ -22,7 +22,7 @@ import junit.framework.TestCase;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public class UnivariateRealFunctionUtilsTest extends TestCase { public class UnivariateRealFunctionUtilsTest extends TestCase {
/** /**

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunctionProxy;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractDifferenceDerivative extends UnivariateRealFunctionProxy implements UnivariateRealFunction { public abstract class AbstractDifferenceDerivative extends UnivariateRealFunctionProxy implements UnivariateRealFunction {
/** */ /** */

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public class BackwardDifferenceDerivative extends AbstractDifferenceDerivative { public class BackwardDifferenceDerivative extends AbstractDifferenceDerivative {

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public class CenterDifferenceDerivative extends AbstractDifferenceDerivative { public class CenterDifferenceDerivative extends AbstractDifferenceDerivative {

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
/** /**
* @todo add javadoc comment * @todo add javadoc comment
* @version $Revision: 1.4 $ $Date: 2004/02/18 03:24:19 $ * @version $Revision$ $Date$
*/ */
public class ForwardDifferenceDerivative extends AbstractDifferenceDerivative { public class ForwardDifferenceDerivative extends AbstractDifferenceDerivative {

View File

@ -32,7 +32,7 @@ import org.apache.commons.math.util.NumberTransformer;
* univariate statistics for a List of Java Beans by property. This * univariate statistics for a List of Java Beans by property. This
* implementation uses beanutils' PropertyUtils to get a simple, nested, * implementation uses beanutils' PropertyUtils to get a simple, nested,
* indexed, mapped, or combined property from an element of a List. * indexed, mapped, or combined property from an element of a List.
* @version $Revision: 1.1 $ $Date: 2004/06/01 21:28:06 $ * @version $Revision$ $Date$
*/ */
public class BeanListUnivariateImpl extends ListUnivariateImpl implements Serializable { public class BeanListUnivariateImpl extends ListUnivariateImpl implements Serializable {

View File

@ -28,7 +28,7 @@ import org.apache.commons.math.stat.StatUtils;
/** /**
* Test cases for the {@link BeanListUnivariateImpl} class. * Test cases for the {@link BeanListUnivariateImpl} class.
* *
* @version $Revision: 1.1 $ $Date: 2004/06/01 21:28:06 $ * @version $Revision$ $Date$
*/ */
public final class BeanListUnivariateImplTest extends TestCase { public final class BeanListUnivariateImplTest extends TestCase {

View File

@ -21,7 +21,7 @@ import org.apache.commons.math.MathException;
/** /**
* Uses PropertyUtils to map a Bean getter to a double value. * Uses PropertyUtils to map a Bean getter to a double value.
* @version $Revision: 1.3 $ $Date: 2004/12/06 05:40:48 $ * @version $Revision$ $Date$
*/ */
public class BeanTransformer implements NumberTransformer { public class BeanTransformer implements NumberTransformer {

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.TestUtils;
import junit.framework.TestCase; import junit.framework.TestCase;
/** /**
* @version $Revision: 1.3 $ $Date: 2004/12/06 05:40:48 $ * @version $Revision$ $Date$
*/ */
public class BeanTransformerTest extends TestCase { public class BeanTransformerTest extends TestCase {

View File

@ -21,7 +21,7 @@ import java.io.Serializable;
* Error thrown when a numerical computation can not be performed because the * Error thrown when a numerical computation can not be performed because the
* numerical result failed to converge to a finite value. * numerical result failed to converge to a finite value.
* *
* @version $Revision: 1.14 $ $Date: 2004/06/23 16:26:16 $ * @version $Revision$ $Date$
*/ */
public class ConvergenceException extends MathException implements Serializable{ public class ConvergenceException extends MathException implements Serializable{

View File

@ -21,7 +21,7 @@ package org.apache.commons.math;
* Maintains an <code>argument</code> property holding the input value that * Maintains an <code>argument</code> property holding the input value that
* caused the function evaluation to fail. * caused the function evaluation to fail.
* *
* @version $Revision: 1.2 $ $Date: 2004/07/17 21:12:52 $ * @version $Revision$ $Date$
*/ */
public class FunctionEvaluationException extends MathException { public class FunctionEvaluationException extends MathException {

View File

@ -19,7 +19,7 @@ import java.io.Serializable;
/** /**
* Signals a configuration problem with any of the factory methods. * Signals a configuration problem with any of the factory methods.
* @version $Revision: 1.18 $ $Date: 2004/06/23 16:26:16 $ * @version $Revision$ $Date$
*/ */
public class MathConfigurationException extends MathException implements Serializable { public class MathConfigurationException extends MathException implements Serializable {

View File

@ -26,7 +26,7 @@ import java.io.PrintWriter;
* <p> * <p>
* Adapted from {@link org.apache.commons.collections.FunctorException}. * Adapted from {@link org.apache.commons.collections.FunctorException}.
* *
* @version $Revision: 1.20 $ $Date: 2004/11/07 02:17:56 $ * @version $Revision$ $Date$
*/ */
public class MathException extends Exception { public class MathException extends Exception {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.ConvergenceException;
* <p> * <p>
* The function should be continuous but not necessarily smooth. * The function should be continuous but not necessarily smooth.
* *
* @version $Revision: 1.18 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public class BisectionSolver extends UnivariateRealSolverImpl { public class BisectionSolver extends UnivariateRealSolverImpl {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* <p> * <p>
* The function should be continuous but not necessarily smooth. * The function should be continuous but not necessarily smooth.
* *
* @version $Revision: 1.18 $ $Date: 2004/11/07 02:17:56 $ * @version $Revision$ $Date$
*/ */
public class BrentSolver extends UnivariateRealSolverImpl { public class BrentSolver extends UnivariateRealSolverImpl {

View File

@ -18,7 +18,7 @@ package org.apache.commons.math.analysis;
/** /**
* Extension of {@link UnivariateRealFunction} representing a differentiable univariate real function. * Extension of {@link UnivariateRealFunction} representing a differentiable univariate real function.
* *
* @version $Revision: 1.2 $ $Date: 2004/06/23 16:26:14 $ * @version $Revision$ $Date$
*/ */
public interface DifferentiableUnivariateRealFunction public interface DifferentiableUnivariateRealFunction
extends UnivariateRealFunction { extends UnivariateRealFunction {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* <p> * <p>
* The function should be continuous but not necessarily smooth. * The function should be continuous but not necessarily smooth.
* *
* @version $Revision: 1.6 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public class NewtonSolver extends UnivariateRealSolverImpl { public class NewtonSolver extends UnivariateRealSolverImpl {

View File

@ -23,7 +23,7 @@ import java.io.Serializable;
* <a href="http://mathworld.wolfram.com/HornersMethod.html">Horner's Method</a> * <a href="http://mathworld.wolfram.com/HornersMethod.html">Horner's Method</a>
* is used to evaluate the function. * is used to evaluate the function.
* *
* @version $Revision: 1.12 $ $Date: 2004/07/20 12:55:01 $ * @version $Revision$ $Date$
*/ */
public class PolynomialFunction implements DifferentiableUnivariateRealFunction, Serializable { public class PolynomialFunction implements DifferentiableUnivariateRealFunction, Serializable {

View File

@ -50,7 +50,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* than or equal to <code>x</code>. The value returned is <br> * than or equal to <code>x</code>. The value returned is <br>
* <code>polynomials[j](x - knot[j])</code></li></ol> * <code>polynomials[j](x - knot[j])</code></li></ol>
* *
* @version $Revision: 1.9 $ $Date: 2004/07/22 02:34:25 $ * @version $Revision$ $Date$
*/ */
public class PolynomialSplineFunction implements UnivariateRealFunction, Serializable { public class PolynomialSplineFunction implements UnivariateRealFunction, Serializable {

View File

@ -35,7 +35,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* <p> * <p>
* The function is assumed to be continuous but not necessarily smooth. * The function is assumed to be continuous but not necessarily smooth.
* *
* @version $Revision: 1.17 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public class SecantSolver extends UnivariateRealSolverImpl implements Serializable { public class SecantSolver extends UnivariateRealSolverImpl implements Serializable {

View File

@ -37,7 +37,7 @@ package org.apache.commons.math.analysis;
* The cubic spline interpolation algorithm implemented is as described in R.L. Burden, J.D. Faires, * The cubic spline interpolation algorithm implemented is as described in R.L. Burden, J.D. Faires,
* <u>Numerical Analysis</u>, 4th Ed., 1989, PWS-Kent, ISBN 0-53491-585-X, pp 126-131. * <u>Numerical Analysis</u>, 4th Ed., 1989, PWS-Kent, ISBN 0-53491-585-X, pp 126-131.
* *
* @version $Revision: 1.19 $ $Date: 2004/06/23 16:26:14 $ * @version $Revision$ $Date$
* *
*/ */
public class SplineInterpolator implements UnivariateRealInterpolator { public class SplineInterpolator implements UnivariateRealInterpolator {

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.FunctionEvaluationException;
/** /**
* An interface representing a univariate real function. * An interface representing a univariate real function.
* *
* @version $Revision: 1.14 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public interface UnivariateRealFunction { public interface UnivariateRealFunction {
/** /**

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
/** /**
* Interface representing a univariate real interpolating function. * Interface representing a univariate real interpolating function.
* *
* @version $Revision: 1.11 $ $Date: 2004/06/23 16:26:14 $ * @version $Revision$ $Date$
*/ */
public interface UnivariateRealInterpolator { public interface UnivariateRealInterpolator {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* <p> * <p>
* Implementations will search for only one zero in the given interval. * Implementations will search for only one zero in the given interval.
* *
* @version $Revision: 1.14 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public interface UnivariateRealSolver { public interface UnivariateRealSolver {

View File

@ -41,7 +41,7 @@ import org.apache.commons.discovery.tools.DiscoverClass;
* <code>UnivariateRealSolverFactory.newInstance().</code> The default is * <code>UnivariateRealSolverFactory.newInstance().</code> The default is
* {@link UnivariateRealSolverFactoryImpl}. * {@link UnivariateRealSolverFactoryImpl}.
* *
* @version $Revision: 1.16 $ $Date: 2004/07/10 15:59:14 $ * @version $Revision$ $Date$
*/ */
public abstract class UnivariateRealSolverFactory { public abstract class UnivariateRealSolverFactory {
/** /**

View File

@ -21,7 +21,7 @@ package org.apache.commons.math.analysis;
* <p> * <p>
* The default solver returned by this factory is a {@link BrentSolver}. * The default solver returned by this factory is a {@link BrentSolver}.
* *
* @version $Revision: 1.13 $ $Date: 2004/06/23 16:26:14 $ * @version $Revision$ $Date$
*/ */
public class UnivariateRealSolverFactoryImpl extends UnivariateRealSolverFactory { public class UnivariateRealSolverFactoryImpl extends UnivariateRealSolverFactory {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* Provide a default implementation for several functions useful to generic * Provide a default implementation for several functions useful to generic
* solvers. * solvers.
* *
* @version $Revision: 1.15 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public abstract class UnivariateRealSolverImpl implements UnivariateRealSolver, public abstract class UnivariateRealSolverImpl implements UnivariateRealSolver,
Serializable { Serializable {

View File

@ -21,7 +21,7 @@ import org.apache.commons.math.ConvergenceException;
/** /**
* Utility routines for {@link UnivariateRealSolver} objects. * Utility routines for {@link UnivariateRealSolver} objects.
* *
* @version $Revision: 1.10 $ $Date: 2004/07/17 21:19:39 $ * @version $Revision$ $Date$
*/ */
public class UnivariateRealSolverUtils { public class UnivariateRealSolverUtils {
/** /**

View File

@ -14,7 +14,7 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.5 $ $Date: 2004/04/26 18:28:16 $ --> <!-- $Revision$ $Date$ -->
<body> <body>
Implementations of common numerical analysis procedures, including root finding and function interpolation. Implementations of common numerical analysis procedures, including root finding and function interpolation.
</body> </body>

View File

@ -23,7 +23,7 @@ import java.io.Serializable;
* real and imaginary part. * real and imaginary part.
* *
* @author Apache Software Foundation * @author Apache Software Foundation
* @version $Revision: 1.9 $ $Date: 2004/06/23 16:26:16 $ * @version $Revision$ $Date$
*/ */
public class Complex implements Serializable { public class Complex implements Serializable {

View File

@ -30,7 +30,7 @@ import java.util.Locale;
* can be configured. * can be configured.
* *
* @author Apache Software Foundation * @author Apache Software Foundation
* @version $Revision: 1.10 $ $Date: 2004/09/21 04:45:55 $ * @version $Revision$ $Date$
*/ */
public class ComplexFormat extends Format implements Serializable { public class ComplexFormat extends Format implements Serializable {

View File

@ -28,7 +28,7 @@ import org.apache.commons.math.util.MathUtils;
* Multiple Precision Complex Arithmetic and Functions</a></li> * Multiple Precision Complex Arithmetic and Functions</a></li>
* </ul> * </ul>
* *
* @version $Revision: 1.1 $ $Date: 2004/07/12 00:27:09 $ * @version $Revision$ $Date$
*/ */
public class ComplexUtils { public class ComplexUtils {

View File

@ -14,7 +14,7 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.1 $ $Date: 2004/04/26 18:28:16 $ --> <!-- $Revision$ $Date$ -->
<body> <body>
Complex number type and implementations of complex transcendental Complex number type and implementations of complex transcendental
functions. functions.

View File

@ -28,7 +28,7 @@ import org.apache.commons.math.analysis.UnivariateRealSolverUtils;
* provided for some of the methods that do not vary from distribution to * provided for some of the methods that do not vary from distribution to
* distribution. * distribution.
* *
* @version $Revision: 1.26 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractContinuousDistribution public abstract class AbstractContinuousDistribution
extends AbstractDistribution extends AbstractDistribution

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** /**
* Base class for probability distributions. * Base class for probability distributions.
* *
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractDistribution public abstract class AbstractDistribution
implements Distribution, Serializable { implements Distribution, Serializable {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math.MathException;
* implementations are provided for some of the methods that do not vary * implementations are provided for some of the methods that do not vary
* from distribution to distribution. * from distribution to distribution.
* *
* @version $Revision: 1.1 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractIntegerDistribution extends AbstractDistribution public abstract class AbstractIntegerDistribution extends AbstractDistribution
implements IntegerDistribution, Serializable { implements IntegerDistribution, Serializable {

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.12 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public interface BinomialDistribution extends IntegerDistribution { public interface BinomialDistribution extends IntegerDistribution {
/** /**

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* The default implementation of {@link BinomialDistribution}. * The default implementation of {@link BinomialDistribution}.
* *
* @version $Revision: 1.19 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public class BinomialDistributionImpl public class BinomialDistributionImpl
extends AbstractIntegerDistribution extends AbstractIntegerDistribution

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.8 $ $Date: 2004-06-23 11:26:18 -0500 (Wed, 23 Jun 2004) $ * @version $Revision$ $Date$
*/ */
public interface CauchyDistribution extends ContinuousDistribution { public interface CauchyDistribution extends ContinuousDistribution {

View File

@ -22,7 +22,7 @@ import java.io.Serializable;
* Default implementation of * Default implementation of
* {@link org.apache.commons.math.distribution.CauchyDistribution}. * {@link org.apache.commons.math.distribution.CauchyDistribution}.
* *
* @version $Revision: 1.13 $ $Date: 2004-07-24 16:41:37 -0500 (Sat, 24 Jul 2004) $ * @version $Revision$ $Date$
*/ */
public class CauchyDistributionImpl extends AbstractContinuousDistribution public class CauchyDistributionImpl extends AbstractContinuousDistribution
implements CauchyDistribution, Serializable { implements CauchyDistribution, Serializable {

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.14 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface ChiSquaredDistribution extends ContinuousDistribution { public interface ChiSquaredDistribution extends ContinuousDistribution {
/** /**

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** /**
* The default implementation of {@link ChiSquaredDistribution} * The default implementation of {@link ChiSquaredDistribution}
* *
* @version $Revision: 1.19 $ $Date: 2004/07/24 20:43:29 $ * @version $Revision$ $Date$
*/ */
public class ChiSquaredDistributionImpl public class ChiSquaredDistributionImpl
extends AbstractContinuousDistribution extends AbstractContinuousDistribution

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
/** /**
* Base interface for continuous distributions. * Base interface for continuous distributions.
* *
* @version $Revision: 1.16 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public interface ContinuousDistribution extends Distribution { public interface ContinuousDistribution extends Distribution {

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.distribution;
/** /**
* Base interface for discrete distributions. * Base interface for discrete distributions.
* *
* @version $Revision: 1.17 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public interface DiscreteDistribution extends Distribution { public interface DiscreteDistribution extends Distribution {
/** /**

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
/** /**
* Base interface for probability distributions. * Base interface for probability distributions.
* *
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $ * @version $Revision$ $Date$
*/ */
public interface Distribution { public interface Distribution {
/** /**

View File

@ -41,7 +41,7 @@ import org.apache.commons.discovery.tools.DiscoverClass;
* ChiSquaredDistribution chi = factory.createChiSquareDistribution(5.0); * ChiSquaredDistribution chi = factory.createChiSquareDistribution(5.0);
* </pre> * </pre>
* *
* @version $Revision: 1.22 $ $Date$ * @version $Revision$ $Date$
*/ */
public abstract class DistributionFactory { public abstract class DistributionFactory {
/** /**

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.distribution;
* A concrete distribution factory. This is the default factory used by * A concrete distribution factory. This is the default factory used by
* Commons-Math. * Commons-Math.
* *
* @version $Revision: 1.21 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public class DistributionFactoryImpl extends DistributionFactory { public class DistributionFactoryImpl extends DistributionFactory {

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.12 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface ExponentialDistribution extends ContinuousDistribution { public interface ExponentialDistribution extends ContinuousDistribution {
/** /**

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** /**
* The default implementation of {@link ExponentialDistribution} * The default implementation of {@link ExponentialDistribution}
* *
* @version $Revision: 1.19 $ $Date: 2004/07/24 21:41:36 $ * @version $Revision$ $Date$
*/ */
public class ExponentialDistributionImpl extends AbstractContinuousDistribution public class ExponentialDistributionImpl extends AbstractContinuousDistribution
implements ExponentialDistribution, Serializable { implements ExponentialDistribution, Serializable {

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.13 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface FDistribution extends ContinuousDistribution { public interface FDistribution extends ContinuousDistribution {
/** /**

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.special.Beta;
* Default implementation of * Default implementation of
* {@link org.apache.commons.math.distribution.FDistribution}. * {@link org.apache.commons.math.distribution.FDistribution}.
* *
* @version $Revision: 1.19 $ $Date: 2004/07/24 21:41:36 $ * @version $Revision$ $Date$
*/ */
public class FDistributionImpl public class FDistributionImpl
extends AbstractContinuousDistribution extends AbstractContinuousDistribution

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.15 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface GammaDistribution extends ContinuousDistribution { public interface GammaDistribution extends ContinuousDistribution {
/** /**

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.special.Gamma;
/** /**
* The default implementation of {@link GammaDistribution} * The default implementation of {@link GammaDistribution}
* *
* @version $Revision: 1.22 $ $Date: 2004/07/24 21:41:36 $ * @version $Revision$ $Date$
*/ */
public class GammaDistributionImpl extends AbstractContinuousDistribution public class GammaDistributionImpl extends AbstractContinuousDistribution
implements GammaDistribution, Serializable { implements GammaDistribution, Serializable {

View File

@ -30,7 +30,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.11 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public interface HypergeometricDistribution extends IntegerDistribution { public interface HypergeometricDistribution extends IntegerDistribution {
/** /**

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* The default implementation of {@link HypergeometricDistribution}. * The default implementation of {@link HypergeometricDistribution}.
* *
* @version $Revision: 1.16 $ $Date: 2004/11/07 03:32:48 $ * @version $Revision$ $Date$
*/ */
public class HypergeometricDistributionImpl extends AbstractIntegerDistribution public class HypergeometricDistributionImpl extends AbstractIntegerDistribution
implements HypergeometricDistribution, Serializable implements HypergeometricDistribution, Serializable

View File

@ -20,7 +20,7 @@ import org.apache.commons.math.MathException;
/** /**
* Interface for discrete distributions of integer-valued random variables. * Interface for discrete distributions of integer-valued random variables.
* *
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $ * @version $Revision$ $Date$
*/ */
public interface IntegerDistribution extends DiscreteDistribution { public interface IntegerDistribution extends DiscreteDistribution {
/** /**

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.8 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface NormalDistribution extends ContinuousDistribution { public interface NormalDistribution extends ContinuousDistribution {
/** /**

View File

@ -25,7 +25,7 @@ import org.apache.commons.math.special.Erf;
* Default implementation of * Default implementation of
* {@link org.apache.commons.math.distribution.NormalDistribution}. * {@link org.apache.commons.math.distribution.NormalDistribution}.
* *
* @version $Revision: 1.13 $ $Date: 2004/07/24 21:41:36 $ * @version $Revision$ $Date$
*/ */
public class NormalDistributionImpl extends AbstractContinuousDistribution public class NormalDistributionImpl extends AbstractContinuousDistribution
implements NormalDistribution, Serializable { implements NormalDistribution, Serializable {

View File

@ -28,7 +28,7 @@ import org.apache.commons.math.MathException;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $ * @version $Revision$ $Date$
*/ */
public interface PoissonDistribution extends IntegerDistribution { public interface PoissonDistribution extends IntegerDistribution {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* Implementation for the @link{PoissonDistribution} * Implementation for the @link{PoissonDistribution}
* *
* @version $Revision: 1.2 $ $Date: 2004/11/07 20:39:15 $ * @version $Revision$ $Date$
*/ */
public class PoissonDistributionImpl extends AbstractIntegerDistribution public class PoissonDistributionImpl extends AbstractIntegerDistribution
implements PoissonDistribution, Serializable { implements PoissonDistribution, Serializable {

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision: 1.12 $ $Date: 2004/06/23 16:26:15 $ * @version $Revision$ $Date$
*/ */
public interface TDistribution extends ContinuousDistribution { public interface TDistribution extends ContinuousDistribution {
/** /**

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.special.Beta;
* Default implementation of * Default implementation of
* {@link org.apache.commons.math.distribution.TDistribution}. * {@link org.apache.commons.math.distribution.TDistribution}.
* *
* @version $Revision: 1.19 $ $Date: 2004/07/24 21:41:36 $ * @version $Revision$ $Date$
*/ */
public class TDistributionImpl public class TDistributionImpl
extends AbstractContinuousDistribution extends AbstractContinuousDistribution

View File

@ -14,6 +14,6 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.5 $ $Date: 2004/04/26 18:28:17 $ --> <!-- $Revision$ $Date$ -->
<body>Implementations of common discrete and continuous distributions.</body> <body>Implementations of common discrete and continuous distributions.</body>
</html> </html>

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.util.MathUtils;
* Representation of a rational number. * Representation of a rational number.
* *
* @author Apache Software Foundation * @author Apache Software Foundation
* @version $Revision: $ $Date: $ * @version $Revision$ $Date$
*/ */
public class Fraction extends Number implements Comparable { public class Fraction extends Number implements Comparable {

View File

@ -32,7 +32,7 @@ import org.apache.commons.math.ConvergenceException;
* configured. * configured.
* *
* @author Apache Software Foundation * @author Apache Software Foundation
* @version $Revision: 1.10 $ $Date: 2004-09-20 23:45:55 -0500 (Mon, 20 Sep 2004) $ * @version $Revision$ $Date$
*/ */
public class FractionFormat extends Format implements Serializable { public class FractionFormat extends Format implements Serializable {

View File

@ -26,7 +26,7 @@ import org.apache.commons.math.util.MathUtils;
* the whole number, numerator and, denominator can be configured. * the whole number, numerator and, denominator can be configured.
* *
* @author Apache Software Foundation * @author Apache Software Foundation
* @version $Revision: $ $Date: $ * @version $Revision$ $Date$
*/ */
public class ProperFractionFormat extends FractionFormat { public class ProperFractionFormat extends FractionFormat {

View File

@ -14,7 +14,7 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.1 $ $Date: 2004/04/26 18:28:16 $ --> <!-- $Revision$ $Date$ -->
<body> <body>
Fraction number type and fraction number formatting. Fraction number type and fraction number formatting.
</body> </body>

View File

@ -25,7 +25,7 @@ import java.math.BigDecimal;
* Matrix element indexing is 0-based -- e.g., <code>getEntry(0, 0)</code> * Matrix element indexing is 0-based -- e.g., <code>getEntry(0, 0)</code>
* returns the element in the first row, first column of the matrix. * returns the element in the first row, first column of the matrix.
* *
* @version $Revision: 1.9 $ $Date: 2004/10/25 03:12:28 $ * @version $Revision$ $Date$
*/ */
public interface BigMatrix { public interface BigMatrix {

View File

@ -43,7 +43,7 @@ import java.math.BigDecimal;
* As specified in the {@link BigMatrix} interface, matrix element indexing * As specified in the {@link BigMatrix} interface, matrix element indexing
* is 0-based -- e.g., <code>getEntry(0, 0)</code> * is 0-based -- e.g., <code>getEntry(0, 0)</code>
* returns the element in the first row, first column of the matrix.</li></ul> * returns the element in the first row, first column of the matrix.</li></ul>
* @version $Revision: 1.10 $ $Date: 2004/11/07 20:19:22 $ * @version $Revision$ $Date$
*/ */
public class BigMatrixImpl implements BigMatrix, Serializable { public class BigMatrixImpl implements BigMatrix, Serializable {

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.linear;
* Thrown when a system attempts an operation on a matrix, and * Thrown when a system attempts an operation on a matrix, and
* that matrix does not satisfy the preconditions for the * that matrix does not satisfy the preconditions for the
* aforementioned operation. * aforementioned operation.
* @version $Revision: 1.8 $ $Date: 2004/12/06 05:49:44 $ * @version $Revision$ $Date$
*/ */
public class InvalidMatrixException extends RuntimeException { public class InvalidMatrixException extends RuntimeException {

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.linear;
/** /**
* Thrown when an operation addresses a matrix coordinate (row,col) * Thrown when an operation addresses a matrix coordinate (row,col)
* which is outside of the dimensions of a matrix. * which is outside of the dimensions of a matrix.
* @version $Revision: 1.8 $ $Date: 2004/12/06 05:49:44 $ * @version $Revision$ $Date$
*/ */
public class MatrixIndexException extends RuntimeException { public class MatrixIndexException extends RuntimeException {

View File

@ -21,7 +21,7 @@ import java.math.BigDecimal;
/** /**
* A collection of static methods that operate on or return matrices. * A collection of static methods that operate on or return matrices.
* *
* @version $Revision: 1.2 $ $Date: 2004/10/25 05:36:15 $ * @version $Revision$ $Date$
*/ */
public class MatrixUtils { public class MatrixUtils {

View File

@ -22,7 +22,7 @@ package org.apache.commons.math.linear;
* Matrix element indexing is 0-based -- e.g., <code>getEntry(0, 0)</code> * Matrix element indexing is 0-based -- e.g., <code>getEntry(0, 0)</code>
* returns the element in the first row, first column of the matrix. * returns the element in the first row, first column of the matrix.
* *
* @version $Revision: 1.25 $ $Date: 2004/10/12 06:19:50 $ * @version $Revision$ $Date$
*/ */
public interface RealMatrix { public interface RealMatrix {

View File

@ -45,7 +45,7 @@ import org.apache.commons.math.util.MathUtils;
* is 0-based -- e.g., <code>getEntry(0, 0)</code> * is 0-based -- e.g., <code>getEntry(0, 0)</code>
* returns the element in the first row, first column of the matrix.</li></ul> * returns the element in the first row, first column of the matrix.</li></ul>
* *
* @version $Revision: 1.35 $ $Date: 2004/11/07 20:19:22 $ * @version $Revision$ $Date$
*/ */
public class RealMatrixImpl implements RealMatrix, Serializable { public class RealMatrixImpl implements RealMatrix, Serializable {

View File

@ -14,6 +14,6 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.6 $ $Date: 2004/06/07 03:26:31 $ --> <!-- $Revision$ $Date$ -->
<body>Linear algebra support.</body> <body>Linear algebra support.</body>
</html> </html>

View File

@ -14,6 +14,6 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.5 $ $Date: 2004/04/26 18:28:16 $ --> <!-- $Revision$ $Date$ -->
<body>Common classes used throughout the commons-math library.</body> <body>Common classes used throughout the commons-math library.</body>
</html> </html>

View File

@ -43,7 +43,7 @@ import org.apache.commons.math.stat.descriptive.StatisticalSummary;
* generate random values "like" those in the input file -- i.e., the values * generate random values "like" those in the input file -- i.e., the values
* generated will follow the distribution of the values in the file. * generated will follow the distribution of the values in the file.
* *
* @version $Revision: 1.23 $ $Date: 2004/10/08 05:08:16 $ * @version $Revision$ $Date$
*/ */
public interface EmpiricalDistribution { public interface EmpiricalDistribution {

View File

@ -54,7 +54,7 @@ import org.apache.commons.math.stat.descriptive.StatisticalSummary;
* entry per line.</li> * entry per line.</li>
* </ul></p> * </ul></p>
* *
* @version $Revision: 1.30 $ $Date: 2004/10/08 05:08:16 $ * @version $Revision$ $Date$
*/ */
public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistribution { public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistribution {

View File

@ -19,7 +19,7 @@ import java.util.Collection;
/** /**
* Random data generation utilities * Random data generation utilities
* @version $Revision: 1.10 $ $Date: 2004/06/14 23:15:15 $ * @version $Revision$ $Date$
*/ */
public interface RandomData { public interface RandomData {
/** /**

View File

@ -71,7 +71,7 @@ import java.util.Collection;
* This implementation is not synchronized. * This implementation is not synchronized.
* </ul> * </ul>
* *
* @version $Revision: 1.16 $ $Date: 2004/07/22 02:34:25 $ * @version $Revision$ $Date$
*/ */
public class RandomDataImpl implements RandomData, Serializable { public class RandomDataImpl implements RandomData, Serializable {

View File

@ -39,7 +39,7 @@ import java.net.MalformedURLException;
* standard deviation = <code>sigma</code></li> * standard deviation = <code>sigma</code></li>
* <li> CONSTANT_MODE -- returns <code>mu</code> every time.</li></ul> * <li> CONSTANT_MODE -- returns <code>mu</code> every time.</li></ul>
* *
* @version $Revision: 1.17 $ $Date: 2004/08/22 01:41:30 $ * @version $Revision$ $Date$
* *
*/ */
public class ValueServer { public class ValueServer {

View File

@ -14,6 +14,6 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.6 $ $Date: 2004/06/14 23:15:15 $ --> <!-- $Revision$ $Date$ -->
<body>Random number and random data generators.</body> <body>Random number and random data generators.</body>
</html> </html>

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.util.ContinuedFraction;
* This is a utility class that provides computation methods related to the * This is a utility class that provides computation methods related to the
* Beta family of functions. * Beta family of functions.
* *
* @version $Revision: 1.21 $ $Date: 2004/06/23 16:26:17 $ * @version $Revision$ $Date$
*/ */
public class Beta implements Serializable { public class Beta implements Serializable {
/** Maximum allowed numerical error. */ /** Maximum allowed numerical error. */

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.MathException;
* This is a utility class that provides computation methods related to the * This is a utility class that provides computation methods related to the
* error functions. * error functions.
* *
* @version $Revision: 1.2 $ $Date: 2004/06/23 16:26:17 $ * @version $Revision$ $Date$
*/ */
public class Erf implements Serializable { public class Erf implements Serializable {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math.util.ContinuedFraction;
* This is a utility class that provides computation methods related to the * This is a utility class that provides computation methods related to the
* Gamma family of functions. * Gamma family of functions.
* *
* @version $Revision: 1.22 $ $Date: 2004/10/08 05:53:18 $ * @version $Revision$ $Date$
*/ */
public class Gamma implements Serializable { public class Gamma implements Serializable {

View File

@ -14,6 +14,6 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- $Revision: 1.5 $ $Date: 2004/04/26 18:28:17 $ --> <!-- $Revision$ $Date$ -->
<body>Implementations of special functions such as Beta and Gamma.</body> <body>Implementations of special functions such as Beta and Gamma.</body>
</html> </html>

View File

@ -35,7 +35,7 @@ import java.util.TreeMap;
* The values are ordered using the default (natural order), unless a * The values are ordered using the default (natural order), unless a
* <code>Comparator</code> is supplied in the constructor. * <code>Comparator</code> is supplied in the constructor.
* *
* @version $Revision: 1.29 $ $Date: 2004/09/21 03:02:34 $ * @version $Revision$ $Date$
*/ */
public class Frequency implements Serializable { public class Frequency implements Serializable {

View File

@ -31,7 +31,7 @@ import org.apache.commons.math.stat.descriptive.summary.SumOfSquares;
* StatUtils provides static methods for computing statistics based on data * StatUtils provides static methods for computing statistics based on data
* stored in double[] arrays. * stored in double[] arrays.
* *
* @version $Revision: 1.33 $ $Date: 2004/10/08 05:08:16 $ * @version $Revision$ $Date$
*/ */
public final class StatUtils { public final class StatUtils {

View File

@ -27,7 +27,7 @@ import java.io.Serializable;
* <p> * <p>
* <strong>Note that these implementations are not synchronized.</strong> * <strong>Note that these implementations are not synchronized.</strong>
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractStorelessUnivariateStatistic public abstract class AbstractStorelessUnivariateStatistic
extends AbstractUnivariateStatistic extends AbstractUnivariateStatistic

View File

@ -28,7 +28,7 @@ import java.io.Serializable;
* validation for the <code>evaluate</code> methods. * validation for the <code>evaluate</code> methods.
* <p> * <p>
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public abstract class AbstractUnivariateStatistic public abstract class AbstractUnivariateStatistic
implements UnivariateStatistic, Serializable { implements UnivariateStatistic, Serializable {

View File

@ -34,7 +34,7 @@ import org.apache.commons.math.stat.descriptive.summary.SumOfSquares;
/** /**
* Abstract factory class for univariate statistical summaries. * Abstract factory class for univariate statistical summaries.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public abstract class DescriptiveStatistics implements StatisticalSummary, Serializable { public abstract class DescriptiveStatistics implements StatisticalSummary, Serializable {

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.util.ResizableDoubleArray;
* Default implementation of * Default implementation of
* {@link org.apache.commons.math.stat.descriptive.DescriptiveStatistics}. * {@link org.apache.commons.math.stat.descriptive.DescriptiveStatistics}.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public class DescriptiveStatisticsImpl extends DescriptiveStatistics implements Serializable { public class DescriptiveStatisticsImpl extends DescriptiveStatistics implements Serializable {

View File

@ -18,7 +18,7 @@ package org.apache.commons.math.stat.descriptive;
/** /**
* Reporting interface for basic univariate statistics. * Reporting interface for basic univariate statistics.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public interface StatisticalSummary { public interface StatisticalSummary {
/** /**

View File

@ -21,7 +21,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* Value object representing the results of a univariate statistical summary. * Value object representing the results of a univariate statistical summary.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public class StatisticalSummaryValues implements Serializable, public class StatisticalSummaryValues implements Serializable,
StatisticalSummary { StatisticalSummary {

View File

@ -23,7 +23,7 @@ package org.apache.commons.math.stat.descriptive;
* This interface is designed to be used for calculating statistics that can be computed in * This interface is designed to be used for calculating statistics that can be computed in
* one pass through the data without storing the full array of sample values. * one pass through the data without storing the full array of sample values.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public interface StorelessUnivariateStatistic extends UnivariateStatistic { public interface StorelessUnivariateStatistic extends UnivariateStatistic {

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* Abstract factory class for univariate statistical summaries. * Abstract factory class for univariate statistical summaries.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public abstract class SummaryStatistics implements StatisticalSummary, Serializable { public abstract class SummaryStatistics implements StatisticalSummary, Serializable {

View File

@ -29,7 +29,7 @@ import org.apache.commons.math.stat.descriptive.summary.SumOfSquares;
/** /**
* Provides a default {@link SummaryStatistics} implementation. * Provides a default {@link SummaryStatistics} implementation.
* *
* @version $Revision: 1.1 $ $Date: 2004/10/08 05:08:17 $ * @version $Revision$ $Date$
*/ */
public class SummaryStatisticsImpl extends SummaryStatistics implements Serializable { public class SummaryStatisticsImpl extends SummaryStatistics implements Serializable {

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