Package com.singularsys.jep.functions
Class Abs
- java.lang.Object
-
- com.singularsys.jep.functions.PostfixMathCommand
-
- com.singularsys.jep.functions.UnaryFunction
-
- com.singularsys.jep.functions.Abs
-
- All Implemented Interfaces:
PostfixMathCommandI,RealUnaryFunction,java.io.Serializable
- Direct Known Subclasses:
BigDecAbs
public class Abs extends UnaryFunction implements RealUnaryFunction
Absolute value function. For Numbers it returns the absolute value of same type, so a Double will return a Double, Integer will return an Integer. ForComplexit returns the modulus.- Author:
- Richard Morris
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, name, NaN, numberOfParameters
-
-
Constructor Summary
Constructors Constructor Description Abs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectabs(java.lang.Object param)java.lang.Objecteval(java.lang.Object arg)doubleevaluate(double val)-
Methods inherited from class com.singularsys.jep.functions.UnaryFunction
instanceOf, instanceOf, run
-
Methods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, checkNumberOfParameters, getName, getNumberOfParameters, setCurNumberOfParameters, setName, toString, toString
-
-
-
-
Method Detail
-
eval
public java.lang.Object eval(java.lang.Object arg) throws EvaluationException- Specified by:
evalin classUnaryFunction- Throws:
EvaluationException
-
abs
public java.lang.Object abs(java.lang.Object param) throws EvaluationException- Throws:
EvaluationException
-
evaluate
public double evaluate(double val)
- Specified by:
evaluatein interfaceRealUnaryFunction
-
-