Class LogTwoArg
java.lang.Object
com.singularsys.jep.functions.PostfixMathCommand
com.singularsys.jep.functions.BinaryFunction
com.singularsys.jep.misc.functions.LogTwoArg
- All Implemented Interfaces:
PostfixMathCommandI,RealBinaryFunction,Serializable
Logarithm function where the base is specified in the second argument.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.singularsys.jep.functions.BinaryFunction
BinaryFunction.BiFunctionWithException<T> -
Field Summary
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, description, name, NaN, numberOfParameters -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.singularsys.jep.functions.BinaryFunction
instanceOf, instanceOf, instanceOf, instanceOf, runMethods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, asType, checkNumberOfParameters, getDescription, getDescription, getDescriptionWithType, getName, getNumberOfParameters, setCurNumberOfParameters, setDescription, setName, toString, toString
-
Constructor Details
-
LogTwoArg
public LogTwoArg(boolean strict) Constructor specifying treatment of negative real values- Parameters:
strict- if true negative real arguments return NaN, otherwise complex results are returned
-
LogTwoArg
public LogTwoArg()Defaults constructor, negative real arguments result in complex results.
-
-
Method Details
-
eval
Description copied from class:BinaryFunctionEvaluate the function- Specified by:
evalin classBinaryFunction- Parameters:
l- lhs argumentr- rhs argument- Returns:
- the results
- Throws:
EvaluationException- if the function cannot be evaluated.
-
log
- Throws:
EvaluationException
-
evaluate
public double evaluate(double l, double r) - Specified by:
evaluatein interfaceRealBinaryFunction
-