Class MatrixMul
java.lang.Object
com.singularsys.jep.functions.PostfixMathCommand
com.singularsys.jep.functions.NaryBinaryFunction
com.singularsys.extensions.matrix.functions.MatrixMul
- All Implemented Interfaces:
MatrixFunctionI,PostfixMathCommandI,Serializable
Multiplies two objects using a MatrixField.
- See Also:
-
Field Summary
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, description, name, NaN, numberOfParameters -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncalcDims(Dimensions... inDims) Attempts to calculate the dimensions of a result of a PostfixMathCommand.Evaluate given a pair of arguments.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
-
MatrixMul
- Parameters:
mfield2-
-
-
Method Details
-
mul
- Throws:
EvaluationException
-
calcDims
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 it cannot be calculated
- Throws:
ParseException- if there is a parse error
-
calcMultiplyDim
- Throws:
ParseException
-
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.
-