Class MatrixSub
- java.lang.Object
-
- com.singularsys.jep.functions.PostfixMathCommand
-
- com.singularsys.jep.functions.BinaryFunction
-
- com.singularsys.extensions.matrix.functions.MatrixSub
-
- All Implemented Interfaces:
MatrixFunctionI,PostfixMathCommandI,java.io.Serializable
public class MatrixSub extends BinaryFunction implements MatrixFunctionI
Subject two objects using a MatrixField.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, name, NaN, numberOfParameters
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DimensionscalcDims(Dimensions... inDims)Attempts to calculate the dimensions of a result of a PostfixMathCommand.java.lang.Objecteval(java.lang.Object l, java.lang.Object r)java.lang.Objectsub(java.lang.Object l, java.lang.Object r)-
Methods inherited from class com.singularsys.jep.functions.BinaryFunction
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
-
-
-
-
Constructor Detail
-
MatrixSub
public MatrixSub(FieldI mfield2)
- Parameters:
mfield2-
-
-
Method Detail
-
sub
public java.lang.Object sub(java.lang.Object l, java.lang.Object r) throws EvaluationException- Throws:
EvaluationException
-
calcDims
public Dimensions calcDims(Dimensions... inDims) throws ParseException
Description copied from interface:MatrixFunctionIAttempts to calculate the dimensions of a result of a PostfixMathCommand.- Specified by:
calcDimsin interfaceMatrixFunctionI- Parameters:
inDims- the dimensions of each argument- Returns:
- the dimension of the result or null if can be calculated
- Throws:
ParseException- if there is a parse error
-
eval
public java.lang.Object eval(java.lang.Object l, java.lang.Object r) throws EvaluationException- Specified by:
evalin classBinaryFunction- Throws:
EvaluationException
-
-