Uses of Class
parser.Function
| Package | Description |
|---|---|
| math.differentialcalculus | |
| math.numericalmethods | |
| parser |
Classes designed to parse a mathematical expression.
|
| util | |
| util.io |
-
Uses of Function in math.differentialcalculus
Methods in math.differentialcalculus that return Function Modifier and Type Method Description FunctionParser. getFunction() -
Uses of Function in math.numericalmethods
Methods in math.numericalmethods that return Function Modifier and Type Method Description FunctionFunctionExpander. getFunction()FunctionNumericalDerivative. getFunction()FunctionNumericalIntegral. getFunction()FunctionRootFinder. getFunction()FunctionNumericalDerivative.Parser. parseDerivativeCommand(java.lang.String expression)FunctionRootFinder. parseFunction(java.lang.String expression)Method that processes the format that this software will recognize for user input of an integral expression.Methods in math.numericalmethods with parameters of type Function Modifier and Type Method Description static doubleIntegration. backward(Function intFunc, double lowerLimit, double upperLimit, int nIntervals)static doubleIntegration. foreward(Function integralFunc, double lowerLimit, double upperLimit, int nIntervals)static doubleIntegration. forward(Function integralFunc, double lowerLimit, double upperLimit, int nIntervals)static doubleIntegration. gaussQuad(Function intFunc, double lowerLimit, double upperLimit, int glPoints)voidFunctionExpander. setFunction(Function function)Changes the Function object dealt with by this class.voidIntegration. setFunction(Function intFunc)voidNumericalDerivative. setFunction(Function function)voidNumericalIntegral. setFunction(Function function)voidRootFinder. setFunction(Function function)static doubleIntegration. trapezium(Function intFunc, double lowerLimit, double upperLimit, double accuracy, int maxIntervals)static doubleIntegration. trapezium(Function intFunc, double lowerLimit, double upperLimit, int nIntervals)Constructors in math.numericalmethods with parameters of type Function Constructor Description FunctionExpander(double xLower, double xUpper, int degree, int precision, Function function)Objects of this class will employ this constructor in creating the polynomial of best fit for the input function between the given boundary values of x.Integration(Function intFunc)Integration(Function intFunc, double lowerLimit, double upperLimit)NumericalDerivative(Function function, double xPoint)RootFinder(Function function, double x1) -
Uses of Function in parser
Methods in parser that return Function Modifier and Type Method Description static FunctionFunction. parse(java.lang.String enc)Methods in parser with parameters of type Function Modifier and Type Method Description static booleanFunction. isAnonymous(Function f) -
Uses of Function in util
Fields in util with type parameters of type Function Modifier and Type Field Description static java.util.Map<java.lang.String,Function>FunctionManager. FUNCTIONSMethods in util that return Function Modifier and Type Method Description static FunctionFunctionManager. add(java.lang.String expression)Adds a Function object to this FunctionManager.static FunctionFunctionManager. getFunction(java.lang.String fName)static FunctionFunctionManager. lookUp(java.lang.String functionName)Attempts to retrieve a Function object from a FunctionManager based on its name.Methods in util that return types with arguments of type Function Modifier and Type Method Description static java.util.ArrayList<Function>FunctionManager. getDefinedFunctions()Methods in util with parameters of type Function Modifier and Type Method Description static voidFunctionManager. add(Function f) -
Uses of Function in util.io
Method parameters in util.io with type arguments of type Function Modifier and Type Method Description static voidFunctionsBackup. readFileLinesToMap(java.util.Map<java.lang.String,Function> map, java.io.File fileToRead)This reads the lines of text in a file into aMap.static voidFunctionsBackup. writeMapItemsToFileLineByLine(java.util.Map<java.lang.String,Function> map, java.io.File file)This writes items on a queue to a file.