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
    Function parseDerivativeCommand​(java.lang.String expression)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Parser

      public Parser​(java.lang.String expression)
  • Method Details

    • 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.