Package math.numericalmethods
Class NumericalDerivative.Parser
- java.lang.Object
-
- math.numericalmethods.NumericalDerivative.Parser
-
- Enclosing class:
- NumericalDerivative
public class NumericalDerivative.Parser extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Parser(java.lang.String expression)
-
Method Summary
Modifier and Type Method Description FunctionparseDerivativeCommand(java.lang.String expression)
-
-
-
Method Detail
-
parseDerivativeCommand
public Function parseDerivativeCommand(java.lang.String expression)
- Parameters:
expression- An expression containing information about the function whose derivative is to be evaluated and the point at which the derivative is to be evaluated. For example: function,4....means find the derivative of the function at the point where x=4 on the curve. Direct examples would be: diff(@sin(x+1),4) diff(F,5.32) where F is a function that has been defined before in the workspace.. and so on.
-
-