Fixed id tag, added svn:keywords for analysis.function package.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1364377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
85ea9b32bd
commit
063515d0aa
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Absolute value function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Abs implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Arc-cosine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Acos implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic arc-cosine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Acosh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.BivariateFunction;
|
|||
/**
|
||||
* Add the two operands.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Add implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Arc-sine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Asin implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic arc-sine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Asinh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Arc-tangent function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Atan implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Arc-tangent function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Atan2 implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic arc-tangent function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Atanh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Cube root function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Cbrt implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* {@code ceil} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Ceil implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction;
|
|||
/**
|
||||
* Constant function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Constant implements DifferentiableUnivariateFunction {
|
||||
/** Constant. */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Cosine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Cos implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic cosine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Cosh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.BivariateFunction;
|
|||
/**
|
||||
* Divide the first operand by the second.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Divide implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Exponential function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Exp implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* <code>e<sup>x</sup>-1</code> function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Expm1 implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* {@code floor} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Floor implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -29,8 +29,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* <a href="http://en.wikipedia.org/wiki/Gaussian_function">
|
||||
* Gaussian</a> function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Gaussian implements DifferentiableUnivariateFunction {
|
||||
/** Mean. */
|
||||
|
|
|
@ -28,8 +28,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* <a href="http://en.wikipedia.org/wiki/Harmonic_oscillator">
|
||||
* simple harmonic oscillator</a> function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class HarmonicOscillator implements DifferentiableUnivariateFunction {
|
||||
/** Amplitude. */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction;
|
|||
/**
|
||||
* Identity function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Identity implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction;
|
|||
/**
|
||||
* Inverse function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Inverse implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Natural logarithm function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Log implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Base 10 logarithm function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Log10 implements DifferentiableUnivariateFunction {
|
||||
/** ln(10) = {@value}.*/
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* <code>log(1 + p)</code> function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Log1p implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -29,8 +29,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* <a href="http://en.wikipedia.org/wiki/Generalised_logistic_function">
|
||||
* Generalised logistic</a> function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Logistic implements DifferentiableUnivariateFunction {
|
||||
/** Lower asymptote. */
|
||||
|
|
|
@ -30,8 +30,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* Logit</a> function.
|
||||
* It is the inverse of the {@link Sigmoid sigmoid} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Logit implements DifferentiableUnivariateFunction {
|
||||
/** Lower bound. */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Maximum function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Max implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Minimum function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Min implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction;
|
|||
/**
|
||||
* Minus function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Minus implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.BivariateFunction;
|
|||
/**
|
||||
* Multiply the two operands.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Multiply implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Power function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Pow implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Power function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Power implements DifferentiableUnivariateFunction {
|
||||
/** Power. */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* {@code rint} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Rint implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -31,8 +31,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* A more flexible version, the generalised logistic, is implemented
|
||||
* by the {@link Logistic} class.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sigmoid implements DifferentiableUnivariateFunction {
|
||||
/** Lower asymptote. */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* {@code signum} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Signum implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Sine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sin implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -29,8 +29,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
* sin(x) / x otherwise.
|
||||
* </code></pre>
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sinc implements DifferentiableUnivariateFunction {
|
||||
/**
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic sine function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sinh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Square-root function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sqrt implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -28,8 +28,8 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
* <a href="http://en.wikipedia.org/wiki/Step_function">
|
||||
* Step function</a>.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class StepFunction implements UnivariateFunction {
|
||||
/** Abscissae. */
|
||||
|
|
|
@ -22,8 +22,8 @@ import org.apache.commons.math3.analysis.BivariateFunction;
|
|||
/**
|
||||
* Subtract the second operand from the first.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Subtract implements BivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Tangent function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Tan implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Hyperbolic tangent function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Tanh implements DifferentiableUnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* {@code ulp} function.
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Ulp implements UnivariateFunction {
|
||||
/** {@inheritDoc} */
|
||||
|
|
Loading…
Reference in New Issue