Example usage for org.apache.commons.math3.analysis UnivariateFunction interface-usage

List of usage examples for org.apache.commons.math3.analysis UnivariateFunction interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis UnivariateFunction interface-usage.

Usage

From source file objenome.op.Numeric1.java

/**
 * 1-input numeric function.
 * Takes all numeric inputs
 * Produces numeric output of the same type as input
 */
public abstract class Numeric1 extends MathNode implements UnivariateFunction, Function<Double, Number> {

From source file org.eclipse.dawnsci.analysis.dataset.roi.fitting.AngleDerivativeFunction.java

/**
 * This class represents the derivative with respect to angle of the geometric
 * distance function from a given point to an ellipse. It is used by an optimizer
 * to find the closest point on an ellipse to a given point.
 * <p>
 * The ellipse is centred on the origin.

From source file de.thkwalter.et.pulsmuster.Differenzsignal.java

/**
 * Diese {@link UnivariateFunction} reprsentiert das Differenzsignal aus Referenzsignal (Sinus) und Abtastsignal 
 * (Sgezahn) fr eine Flanke des Sgezahns.
 * 
 * @author Th. K. Walter
 */

From source file eu.tango.energymodeller.types.energymodel.LinearFunction.java

/**
 * This is to be used for energy models that are a univariate linear function.
 * i.e. that follow y = mx + c.
 *
 * @author Richard Kavanagh
 */

From source file eu.crisis_economics.abm.markets.clearing.heterogeneous.BoundedUnivariateFunction.java

/**
  * @author phillips
  */
public interface BoundedUnivariateFunction extends UnivariateFunction, BoundedDomainMixin {
}

From source file org.moeaframework.examples.gp.regression.QuarticExample.java

/**
 * The Quartic function as introduced by Koza [1].  The function is
 * {@code f(x) = x^4 + x^3 + x^2 + x}.
 * 
 * References:
 * <ol>

From source file org.moeaframework.examples.gp.regression.QuinticExample.java

/**
 * The Quintic function as introduced by Koza [1].  The function is
 * {@code f(x) = x^5 - 2x^3 + x}.
 * 
 * References:
 * <ol>

From source file org.moeaframework.examples.gp.regression.SexticExample.java

/**
 * The Sextic function as introduced by Koza [1].  The function is
 * {@code f(x) = x^6 - 2x^4 + x^2}.
 * 
 * References:
 * <ol>

From source file de.thkwalter.et.schlupfbezifferung.Schlupfresiduum.java

/**
 * Das Residuum des Schlupfs eines Betriebspunkts in Abhngigkeit vom Steigungswinkel der Schlupfgeraden.
 * 
 * @author Th. K. Walter
 */
public class Schlupfresiduum implements UnivariateFunction {

From source file com.itemanalysis.psychometrics.kernel.LikelihoodCrossValidation.java

/**
 * See Silverman (1986, p. 53).
 *
 * Silverman, B. W. (1986). Density estimation for statistics and data analysis. Boca Raton, FL: Chapman Hall.
 *
 */