Class NumericalDerivative.Parser

java.lang.Object
math.numericalmethods.NumericalDerivative.Parser
Enclosing class:
NumericalDerivative

public class NumericalDerivative.Parser extends Object
  • Constructor Details

    • Parser

      public Parser(String expression)
  • Method Details

    • parseDerivativeCommand

      public Function parseDerivativeCommand(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.