Package functions.unitary.specialcases
Class Exp
- All Implemented Interfaces:
Differentiable
,Evaluable
,Invertible
,Outputable
,Simplifiable
,Comparable<GeneralFunction>
,Iterable<GeneralFunction>
public class Exp extends SpecialCaseBinaryFunction
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Exp(GeneralFunction operand)
Constructs a newExp
-
Method Summary
Modifier and Type Method Description double
evaluate(Map<String,Double> variableValues)
Evaluates aGeneralFunction
at a point denoted by aMap
BinaryFunction
getClassForm()
Returns the BinaryFunction that this function is a special case of.GeneralFunction
getDerivative(String varID)
Returns the derivative of aGeneralFunction
with respect to a variable.UnitaryFunction
getInstance(GeneralFunction operand)
Returns a new instance of thisUnitaryFunction
Class<?>
getInverse()
Returns theClass
corresponding to the inverse of this functionMethods inherited from class UnitaryFunction
clone, compareSelf, equalsFunction, hashCode, iterator, newInstanceOf, simplify, simplifyFOC, simplifyInternal, simplifyInverse, substituteAll, toOutputFunction, toString
Methods inherited from class GeneralFunction
compareTo, derivativeAt, equals, equalsSimplified, getNthDerivative, getSimplifiedDerivative, substituteVariables
-
Constructor Details
-
Method Details
-
evaluate
public double evaluate(Map<String,Double> variableValues)Description copied from interface:Evaluable
Evaluates aGeneralFunction
at a point denoted by aMap
- Parameters:
variableValues
- the values of the variables in theGeneralFunction
at the point- Returns:
- the value of the
GeneralFunction
at the point
-
getDerivative
Description copied from interface:Differentiable
Returns the derivative of aGeneralFunction
with respect to a variable. Should not be used in general;GeneralFunction.getSimplifiedDerivative(java.lang.String)
is strongly preferred.- Parameters:
varID
- the ID of the variable that is differentiated against- Returns:
- the derivative of the function with respect to
varID
-
getInstance
Description copied from class:UnitaryFunction
Returns a new instance of thisUnitaryFunction
- Specified by:
getInstance
in classUnitaryFunction
- Parameters:
operand
- theGeneralFunction
to be operated on- Returns:
- a new instance of this
UnitaryFunction
-
getClassForm
Description copied from class:SpecialCaseBinaryFunction
Returns the BinaryFunction that this function is a special case of. Ex:ln
becomeslogb_e
- Specified by:
getClassForm
in classSpecialCaseBinaryFunction
- Returns:
- a new BinaryFunction
-
getInverse
public Class<?> getInverse()Description copied from interface:Invertible
Returns theClass
corresponding to the inverse of this function- Returns:
- the inverse
Class
-