Package math.differentialcalculus
Class Methods
- java.lang.Object
-
- math.differentialcalculus.Methods
-
public class Methods extends java.lang.Object- Author:
- GBEMIRO
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String[]inbuiltMethodsA list of all inbuilt methods of the parser of this software.The user is free to define his own functions.static java.lang.String[]inbuiltOperators
-
Constructor Summary
Constructors Constructor Description Methods()
-
Method Summary
Modifier and Type Method Description static java.util.ArrayList<java.lang.String>getMethodDifferential(java.lang.String method, java.lang.String var, Derivative d)static booleanisInbuiltMethodName(java.lang.String name)
-
-
-
Method Detail
-
isInbuiltMethodName
public static boolean isInbuiltMethodName(java.lang.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 java.util.ArrayList<java.lang.String> getMethodDifferential(java.lang.String method, java.lang.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.
-
-