Package com.singularsys.jep.functions
Class Multiply
java.lang.Object
com.singularsys.jep.functions.PostfixMathCommand
com.singularsys.jep.functions.NaryBinaryFunction
com.singularsys.jep.functions.Multiply
- All Implemented Interfaces:
PostfixMathCommandI,RealBinaryFunction,Serializable
- Direct Known Subclasses:
BigDecMul
The multiplication function.
Typically used with two arguments, but can work with
any number of arguments, assuming associativity.
- Since:
- Jep 4.1 can work with
List<?>. - See Also:
-
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.NaryBinaryFunction
checkNumberOfParameters, eval, instanceOf, instanceOf, instanceOf, instanceOf, runMethods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, asType, getDescription, getDescription, getDescriptionWithType, getName, getNumberOfParameters, setCurNumberOfParameters, setDescription, setName, toString, toString
-
Constructor Details
-
Multiply
public Multiply()
-
-
Method Details
-
eval
Description copied from class:NaryBinaryFunctionEvaluate given a pair of arguments. Must be specified for all implementing classes.- Specified by:
evalin classNaryBinaryFunction- Parameters:
l- lhs argumentr- rhs argument- Returns:
- result of applying the function to the arguments
- Throws:
EvaluationException- on error.
-
mul
- Throws:
EvaluationException
-
mul
-
mul
-
mul
-
mul
- Throws:
EvaluationException
-
mul
- Throws:
EvaluationException
-
evaluate
public double evaluate(double l, double r) - Specified by:
evaluatein interfaceRealBinaryFunction
-