Class Methods

java.lang.Object
math.differentialcalculus.Methods

public class Methods extends Object
  • Field Details

    • inbuiltOperators

      public static final String[] inbuiltOperators
    • inbuiltMethods

      public static final String[] inbuiltMethods
      A list of all inbuilt methods of the parser of this software.The user is free to define his own functions.
  • Constructor Details

    • Methods

      public Methods()
  • Method Details

    • isInbuiltMethodName

      public static boolean isInbuiltMethodName(String name)
      Parameters:
      name - The name of the token we wish to verify as an inbuilt method
      Returns:
      true if the name connotes an inbuilt method's name.
    • getMethodDifferential

      public static ArrayList<String> getMethodDifferential(String method, String var, Derivative d)
      Parameters:
      method - The method name..e.g sin, cos, tan e.t.c.
      var - The name of the Differentiable.
      d - The invoking Derivative object.
      Returns:
      the differential coefficient.