Class Function<X,Y>
- java.lang.Object
-
- org.jscience.mathematics.function.Function<X,Y>
-
- All Implemented Interfaces:
Serializable
,javolution.lang.Realtime
- Direct Known Subclasses:
DiscreteFunction
,Polynomial
,RationalFunction
public abstract class Function<X,Y> extends Object implements Serializable, javolution.lang.Realtime
This abstract class represents a mapping between two sets such that there is a unique element in the second set assigned to each element in the first set.
Functions can be discrete or continuous and multivariate functions (functions with multiple variables) are also supported as illustrated below:[code] // Defines local variables. Variable.Local
varX = new Variable.Local ("x"); Variable.Local varY = new Variable.Local ("y"); // f(x, y) = x² + x·y + 1; Polynomial x = Polynomial.valueOf(Rational.ONE, varX); Polynomial y = Polynomial.valueOf(Rational.ONE, varY); Polynomial fx_y = x.pow(2).plus(x.times(y)).plus(Rational.ONE); System.out.println("f(x,y) = " + fx_y); // Evaluates f(1,0) System.out.println("f(1,0) = " + fx_y.evaluate(Rational.ONE, Rational.ZERO)); // Calculates df(x,y)/dx System.out.println("df(x,y)/dx = " + fx_y.differentiate(varX)); > f(x,y) = [1/1]x^2 + [1/1]xy + [1/1] > f(1,0) = 2/1 > df(x,y)/dx = [2/1]x + [1/1]y [/code] Functions are often given by formula (e.g.
f(x) = x²-x+1, f(x,y)= x·y
) but the general function instance might tabulate the values, solve an equation, etc.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Function()
Default constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description <Z> Function<Z,Y>
compose(Function<Z,X> that)
Returns the composition of this function with the one specified.Function<X,Y>
differentiate(Variable<X> v)
Returns the first derivative of this function with respect to the specified variable.Function<X,Y>
divide(Function<X,Y> that)
Returns the quotient of this function with the one specified.boolean
equals(Object obj)
Indicates if this function is equals to the specified object.abstract Y
evaluate()
Evaluates this function using itsvariables
current values.Y
evaluate(X arg)
Evaluates this function for the specified argument value (convenience method).Y
evaluate(X... args)
Evaluates this function for the specified arguments values (convenience method).Variable<X>
getVariable(String symbol)
Retrieves the variable from this function having the specified symbol (convenience method).abstract List<Variable<X>>
getVariables()
Returns a lexically ordered list of the variables (or arguments) for this function (empty list for constant functions).int
hashCode()
Returns the hash code for this function (consistent withequals(Object)
.Function<X,Y>
integrate(Variable<X> v)
Returns an integral of this function with respect to the specified variable.Function<X,Y>
minus(Function<X,Y> that)
Returns the difference of this function with the one specified.Function<X,Y>
plus(Function<X,Y> that)
Returns the sum of this function with the one specified.Function<X,Y>
pow(int n)
Returns this function raised at the specified exponent.Function<X,Y>
times(Function<X,Y> that)
Returns the product of this function with the one specified.String
toString()
Returns the text representation of this function as ajava.lang.String
.abstract javolution.text.Text
toText()
Returns the textual representation of this real-time object (equivalent totoString
except that the returned value can be allocated from the local context space).
-
-
-
Method Detail
-
getVariables
public abstract List<Variable<X>> getVariables()
Returns a lexically ordered list of the variables (or arguments) for this function (empty list for constant functions).- Returns:
- this function current unset variables (sorted).
-
evaluate
public abstract Y evaluate()
Evaluates this function using itsvariables
current values.- Returns:
- the evaluation of this function.
- Throws:
FunctionException
- if any of this function's variable is not set.
-
equals
public boolean equals(Object obj)
Indicates if this function is equals to the specified object.
-
hashCode
public int hashCode()
Returns the hash code for this function (consistent withequals(Object)
.
-
getVariable
public final Variable<X> getVariable(String symbol)
Retrieves the variable from this function having the specified symbol (convenience method).- Returns:
- the variable having the specified symbol or
null
if none.
-
evaluate
public final Y evaluate(X arg)
Evaluates this function for the specified argument value (convenience method). The evaluation is performed in aLocalContext
and can safely be called upon functions withglobal variables
.- Parameters:
arg
- the single variable value used for the evaluation.- Returns:
- the evaluation of this function.
- Throws:
FunctionException
- ifgetVariables().size() != 1
-
evaluate
public final Y evaluate(X... args)
Evaluates this function for the specified arguments values (convenience method). The evaluation is performed in aLocalContext
and can safely be called upon functions withglobal variables
.- Parameters:
args
- the variables values used for the evaluation.- Returns:
- the evaluation of this function.
- Throws:
IllegalArgumentException
- ifargs.length != getVariables().size())
-
compose
public <Z> Function<Z,Y> compose(Function<Z,X> that)
Returns the composition of this function with the one specified.- Parameters:
that
- the function for which the return value is passed as argument to this function.- Returns:
- the function
(this o that)
- Throws:
FunctionException
- if this function is not monovariate.
-
differentiate
public Function<X,Y> differentiate(Variable<X> v)
Returns the first derivative of this function with respect to the specified variable.- Parameters:
v
- the variable for which the derivative is calculated.- Returns:
d[this]/dv
- Throws:
FunctionException
- if the derivative is undefined.- See Also:
- Derivative -- from MathWorld
-
integrate
public Function<X,Y> integrate(Variable<X> v)
Returns an integral of this function with respect to the specified variable.- Parameters:
v
- the variable for which the integral is calculated.- Returns:
S[this·dv]
- See Also:
- Integral -- from MathWorld
-
plus
public Function<X,Y> plus(Function<X,Y> that)
Returns the sum of this function with the one specified.- Parameters:
that
- the function to be added.- Returns:
this + that
.
-
minus
public Function<X,Y> minus(Function<X,Y> that)
Returns the difference of this function with the one specified.- Parameters:
that
- the function to be subtracted.- Returns:
this - that
.
-
times
public Function<X,Y> times(Function<X,Y> that)
Returns the product of this function with the one specified.- Parameters:
that
- the function multiplier.- Returns:
this · that
.
-
divide
public Function<X,Y> divide(Function<X,Y> that)
Returns the quotient of this function with the one specified. Evaluation of this function may raise an exception if the function result is not a {- Parameters:
that
- the function divisor.- Returns:
this / that
.
-
pow
public Function<X,Y> pow(int n)
Returns this function raised at the specified exponent.- Parameters:
n
- the exponent.- Returns:
thisn
- Throws:
IllegalArgumentException
- ifn <= 0
-
toText
public abstract javolution.text.Text toText()
Returns the textual representation of this real-time object (equivalent totoString
except that the returned value can be allocated from the local context space).- Specified by:
toText
in interfacejavolution.lang.Realtime
- Returns:
- this object's textual representation.
-
-