Package org.mariuszgromada.math.mxparser
Class Function
Buy me a cup of coffee via donation

or support me purchasing the license via ORDER Page , or INFIMA online store

java.lang.Object
org.mariuszgromada.math.mxparser.PrimitiveElement
org.mariuszgromada.math.mxparser.Function
- All Implemented Interfaces:
Serializable
Function class provides possibility to define user functions.
Functions can be used in further processing by any expression,
dependent or recursive argument, function, etc... For example:
- 'f(x) = sin(x)'
- 'g(x,y) = sin(x)+cos(y)'
- 'h(x,y = f(x)+g(y,x)'
- in general 'f(x1,x2,...,xn)' where x1,...,xn are arguments
When creating a function you should avoid names reserved as parser keywords, in general words known in mathematical language as function names, operators (for example: sin, cos, +, -, pi, e, etc...). Please be informed that after associating the constant with the expression, function or dependent/recursive argument its name will be recognized by the parser as reserved key word. It means that it could not be the same as any other key word known by the parser for this particular expression.
- Version:
- 6.1.0
- Author:
- Mariusz Gromada
MathParser.org - mXparser project page
mXparser on GitHub
INFIMA place to purchase a commercial MathParser.org-mXparser software license
info@mathparser.org
ScalarMath.org - a powerful math engine and math scripting language
Scalar Lite
Scalar Pro
MathSpace.pl - See Also:
Buy me a cup of coffee via donation

or support me purchasing the license via ORDER Page , or INFIMA online store

-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intFunction with body based on the extended code.static final intFunction with body based on the expression string.static final booleanStatus of the syntax - no syntax errorstatic final intWhen function was not foundstatic final booleanStatus of the syntax - syntax error or syntax status unknownstatic final booleanDeprecated.static Stringstatic final intFunction type id identifier -
Constructor Summary
ConstructorsConstructorDescriptionConstructor - creates function from function name, function expression string and argument names.Function(String functionName, String functionExpressionString, PrimitiveElement... elements) Constructor - creates function from function name and function expression string.Function(String functionName, FunctionExtension functionExtension) Constructor for function definition based on your own source code - this is via implementation of FunctionExtension interface.Function(String functionName, FunctionExtensionVariadic functionExtensionVariadic) Constructor for function definition based on your own source code - this is via implementation of FunctionExtensionVariadic interface.Function(String functionDefinitionString, PrimitiveElement... elements) Constructor for function definition in natural math language, for instance providing on string "f(x,y) = sin(x) + cos(x)" is enough to define function "f" with parameters "x and y" and function body "sin(x) + cos(x)". -
Method Summary
Modifier and TypeMethodDescriptionvoidaddArguments(Argument... arguments) Adds arguments (variadic) to the function expression definition.voidaddConstants(List<Constant> constantsList) Adds constants to the function expression definition.voidaddConstants(Constant... constants) Adds constants (variadic parameters) to the function expression definition.voidaddDefinitions(PrimitiveElement... elements) Adds user defined elements (such as: Arguments, Constants, Functions) to the function expressions.voidaddFunctions(Function... functions) Adds functions (variadic parameters) to the function expression definition.doubleCalculates function valuedoublecalculate(double... parameters) Calculates function valuedoubleCalculates function valuedoublecalculate(CalcStepsRegister calcStepsRegister) Calculates function value and registers all the calculation stepsbooleanChecks function syntaxprotected Functionclone()clone methodCreates a completely independent 1-1 clone that can be safely used by a separate thread.voiddefineArgument(String argumentName, double argumentValue) Enables to define the argument (associated with the function expression) based on the argument name and the argument value.voiddefineArguments(String... argumentsNames) Enables to define the arguments (associated with the function expression) based on the given arguments names.voiddefineConstant(String constantName, double constantValue) Enables to define the constant (associated with the function expression) based on the constant name and constant value.voiddefineFunction(String functionName, String functionExpressionString, String... argumentsNames) Enables to define the function (associated with the function expression) based on the function name, function expression string and arguments names (variadic parameters).getArgument(int argumentIndex) Gets argument from the function expression.getArgument(String argumentName) Gets argument from the function expression.intgetArgumentIndex(String argumentName) Gets argument index from the function expression.intGets number of arguments associated with the function expression.doubleGets computing timegetConstant(int constantIndex) Gets constant associated with the function expression.getConstant(String constantName) Gets constant associated with the function expression.intgetConstantIndex(String constantName) Gets constant index associated with the function expression.intGets number of constants associated with the function expression.Gets function descriptionReturns error message after checking the syntax.getFunction(int functionIndex) Gets function associated with the function expression.getFunction(String functionName) Gets function associated with the function expression.intReturns function body type:BODY_RUNTIMEBODY_EXTENDEDGets function expression stringintgetFunctionIndex(String functionName) Gets index of function associated with the function expression.Gets function name.intGets number of functions associated with the function expression.getParameterName(int parameterIndex) Gets user defined function parameter nameintGets number of parameters associated with the function expression.booleanGets recursive mode statusbooleanReturns verbose mode statusvoidRemoves all arguments associated with the function expression.voidRemoves all constants associated with the function expressionvoidRemoves all functions associated with the function expression.voidremoveArguments(String... argumentsNames) Removes first occurrences of the arguments associated with the function expression.voidremoveArguments(Argument... arguments) Removes first occurrences of the arguments associated with the function expression.voidremoveConstants(String... constantsNames) Removes first occurrences of the constants associated with the function expression.voidremoveConstants(Constant... constants) Removes first occurrences of the constants associated with the function expressionvoidremoveDefinitions(PrimitiveElement... elements) Removes user defined elements (such as: Arguments, Constants, Functions) from the function expressions.voidremoveFunctions(String... functionsNames) Removes first occurrences of the functions associated with the function expression.voidremoveFunctions(Function... functions) Removes first occurrences of the functions associated with the function expression.voidsetArgumentValue(int argumentIndex, double argumentValue) Sets value of function argument (function parameter).voidsetDescription(String description) Sets function description.voidsetFunction(String functionDefinitionString, PrimitiveElement... elements) Deprecated.Planned to be removed, useaddFunctions(Function...),addDefinitions(PrimitiveElement...)insteadvoidsetFunctionName(String functionName) Sets function name.voidsetParametersNumber(int parametersNumber) Set parameters number.voidDisables function verbose mode (sets default silent mode)voidEnables verbose function modeMethods inherited from class org.mariuszgromada.math.mxparser.PrimitiveElement
getMyTypeId
-
Field Details
-
NO_SYNTAX_ERRORS
public static final boolean NO_SYNTAX_ERRORSStatus of the syntax - no syntax error- See Also:
-
SYNTAX_ERROR
public static final boolean SYNTAX_ERRORStatus of the syntax - syntax error or syntax status unknown- See Also:
-
SYNTAX_ERROR_OR_STATUS_UNKNOWN
Deprecated.Planned to be removed, useSYNTAX_ERRORinsteadStatus of the syntax - syntax error or syntax status unknown- See Also:
-
NOT_FOUND
public static final int NOT_FOUNDWhen function was not found- See Also:
-
TYPE_ID
public static final int TYPE_IDFunction type id identifier- See Also:
-
TYPE_DESC
-
BODY_RUNTIME
public static final int BODY_RUNTIMEFunction with body based on the expression string.- See Also:
-
BODY_EXTENDED
public static final int BODY_EXTENDEDFunction with body based on the extended code.
-
-
Constructor Details
-
Function
Constructor - creates function from function name and function expression string.- Parameters:
functionName- the function namefunctionExpressionString- the function expression stringelements- Optional elements list (variadic - comma separated) of types: Argument, Constant, Function- See Also:
-
Function
Constructor - creates function from function name, function expression string and argument names.- Parameters:
functionName- the function namefunctionExpressionString- the function expression stringargumentsNames- the arguments names (variadic parameters) comma separated list- See Also:
-
Function
Constructor for function definition in natural math language, for instance providing on string "f(x,y) = sin(x) + cos(x)" is enough to define function "f" with parameters "x and y" and function body "sin(x) + cos(x)".- Parameters:
functionDefinitionString- Function definition in the form of one String, ie "f(x,y) = sin(x) + cos(x)"elements- Optional elements list (variadic - comma separated) of types: Argument, Constant, Function- See Also:
-
Function
Constructor for function definition based on your own source code - this is via implementation of FunctionExtension interface.- Parameters:
functionName- Function namefunctionExtension- Your own source code
-
Function
Constructor for function definition based on your own source code - this is via implementation of FunctionExtensionVariadic interface.- Parameters:
functionName- Function namefunctionExtensionVariadic- Your own source code
-
-
Method Details
-
setFunction
Deprecated.Planned to be removed, useaddFunctions(Function...),addDefinitions(PrimitiveElement...)insteadConstructor for function definition in natural math language, for instance providing on string "f(x,y) = sin(x) + cos(x)" is enough to define function "f" with parameters "x and y" and function body "sin(x) + cos(x)".- Parameters:
functionDefinitionString- Function definition in the form of one String, ie "f(x,y) = sin(x) + cos(x)"elements- Optional elements list (variadic - comma separated) of types: Argument, Constant, Function- See Also:
-
setDescription
Sets function description.- Parameters:
description- the function description
-
getDescription
Gets function description- Returns:
- Function description as string
-
getFunctionName
Gets function name.- Returns:
- Function name as string.
-
getFunctionExpressionString
Gets function expression string- Returns:
- Function expression as string.
-
setFunctionName
Sets function name.- Parameters:
functionName- the function name
-
setArgumentValue
public void setArgumentValue(int argumentIndex, double argumentValue) Sets value of function argument (function parameter).- Parameters:
argumentIndex- the argument index (in accordance to arguments declaration sequence)argumentValue- the argument value
-
getFunctionBodyType
public int getFunctionBodyType()Returns function body type:BODY_RUNTIMEBODY_EXTENDED- Returns:
- Returns function body type:
BODY_RUNTIMEBODY_EXTENDED
-
checkSyntax
public boolean checkSyntax()Checks function syntax- Returns:
- syntax status: Function.NO_SYNTAX_ERRORS, Function.SYNTAX_ERROR
-
getErrorMessage
Returns error message after checking the syntax.- Returns:
- Error message as string.
-
clone
clone method -
calculate
public double calculate()Calculates function value- Returns:
- Function value as double.
-
calculate
Calculates function value and registers all the calculation steps- Parameters:
calcStepsRegister- A collection to store list of calculation steps, steps registered as strings.- Returns:
- Function value as double.
-
calculate
public double calculate(double... parameters) Calculates function value- Parameters:
parameters- the function parameters values (as doubles)- Returns:
- function value as double.
-
calculate
Calculates function value- Parameters:
arguments- function parameters (as Arguments)- Returns:
- function value as double
-
addDefinitions
Adds user defined elements (such as: Arguments, Constants, Functions) to the function expressions.- Parameters:
elements- Elements list (variadic), where Argument, Constant, Function extend the same class PrimitiveElement- See Also:
-
removeDefinitions
Removes user defined elements (such as: Arguments, Constants, Functions) from the function expressions.- Parameters:
elements- Elements list (variadic), where Argument, Constant, Function extend the same class PrimitiveElement- See Also:
-
addArguments
Adds arguments (variadic) to the function expression definition.- Parameters:
arguments- the arguments list (comma separated list)- See Also:
-
defineArguments
Enables to define the arguments (associated with the function expression) based on the given arguments names.- Parameters:
argumentsNames- the arguments names (variadic) comma separated list- See Also:
-
defineArgument
Enables to define the argument (associated with the function expression) based on the argument name and the argument value.- Parameters:
argumentName- the argument nameargumentValue- the argument value- See Also:
-
getArgumentIndex
Gets argument index from the function expression.- Parameters:
argumentName- the argument name- Returns:
- The argument index if the argument name was found, otherwise returns Argument.NOT_FOUND
- See Also:
-
getArgument
Gets argument from the function expression.- Parameters:
argumentName- the argument name- Returns:
- The argument if the argument name was found, otherwise returns null.
- See Also:
-
getArgument
Gets argument from the function expression.- Parameters:
argumentIndex- the argument index- Returns:
- Argument if the argument index is between 0 and the last available argument index (getArgumentsNumber()-1), otherwise returns null.
- See Also:
-
getParametersNumber
public int getParametersNumber()Gets number of parameters associated with the function expression.- Returns:
- The number of function parameters (int >= 0)
- See Also:
-
setParametersNumber
public void setParametersNumber(int parametersNumber) Set parameters number.- Parameters:
parametersNumber- the number of function parameters (default = number of arguments (lower number might be specified).
-
getParameterName
Gets user defined function parameter name- Parameters:
parameterIndex- Parameter index between 0 and n-1- Returns:
- If parameter exists returns parameters name, otherwise empty string is returned.
-
getArgumentsNumber
public int getArgumentsNumber()Gets number of arguments associated with the function expression.- Returns:
- The number of arguments (int >= 0)
- See Also:
-
removeArguments
Removes first occurrences of the arguments associated with the function expression.- Parameters:
argumentsNames- the arguments names (variadic parameters) comma separated list- See Also:
-
removeArguments
Removes first occurrences of the arguments associated with the function expression.- Parameters:
arguments- the arguments (variadic parameters) comma separated list- See Also:
-
removeAllArguments
public void removeAllArguments()Removes all arguments associated with the function expression.- See Also:
-
addConstants
Adds constants (variadic parameters) to the function expression definition.- Parameters:
constants- the constants (comma separated list)- See Also:
-
addConstants
Adds constants to the function expression definition.- Parameters:
constantsList- the list of constants- See Also:
-
defineConstant
Enables to define the constant (associated with the function expression) based on the constant name and constant value.- Parameters:
constantName- the constant nameconstantValue- the constant value- See Also:
-
getConstantIndex
Gets constant index associated with the function expression.- Parameters:
constantName- the constant name- Returns:
- Constant index if constant name was found, otherwise return Constant.NOT_FOUND.
- See Also:
-
getConstant
Gets constant associated with the function expression.- Parameters:
constantName- the constant name- Returns:
- Constant if constant name was found, otherwise return null.
- See Also:
-
getConstant
Gets constant associated with the function expression.- Parameters:
constantIndex- the constant index- Returns:
- Constant if the constantIndex is between 0 and the last available constant index (getConstantsNumber() - 1), otherwise it returns null.
- See Also:
-
getConstantsNumber
public int getConstantsNumber()Gets number of constants associated with the function expression.- Returns:
- number of constants (int >= 0)
- See Also:
-
removeConstants
Removes first occurrences of the constants associated with the function expression.- Parameters:
constantsNames- the constants names (variadic parameters) comma separated list- See Also:
-
removeConstants
Removes first occurrences of the constants associated with the function expression- Parameters:
constants- the constants (variadic parameters) comma separated list- See Also:
-
removeAllConstants
public void removeAllConstants()Removes all constants associated with the function expression- See Also:
-
addFunctions
Adds functions (variadic parameters) to the function expression definition.- Parameters:
functions- the functions (variadic parameters) comma separated list- See Also:
-
defineFunction
public void defineFunction(String functionName, String functionExpressionString, String... argumentsNames) Enables to define the function (associated with the function expression) based on the function name, function expression string and arguments names (variadic parameters).- Parameters:
functionName- the function namefunctionExpressionString- the expression stringargumentsNames- the function arguments names (variadic parameters) comma separated list- See Also:
-
getFunctionIndex
Gets index of function associated with the function expression.- Parameters:
functionName- the function name- Returns:
- Function index if function name was found, otherwise returns Function.NOT_FOUND
- See Also:
-
getFunction
Gets function associated with the function expression.- Parameters:
functionName- the function name- Returns:
- Function if function name was found, otherwise returns null.
- See Also:
-
getFunction
Gets function associated with the function expression.- Parameters:
functionIndex- the function index- Returns:
- Function if function index is between 0 and the last available function index (getFunctionsNumber()-1), otherwise returns null.
- See Also:
-
getFunctionsNumber
public int getFunctionsNumber()Gets number of functions associated with the function expression.- Returns:
- number of functions (int >= 0)
- See Also:
-
removeFunctions
Removes first occurrences of the functions associated with the function expression.- Parameters:
functionsNames- the functions names (variadic parameters) comma separated list- See Also:
-
removeFunctions
Removes first occurrences of the functions associated with the function expression.- Parameters:
functions- the functions (variadic parameters) comma separated list.- See Also:
-
removeAllFunctions
public void removeAllFunctions()Removes all functions associated with the function expression.- See Also:
-
setVerboseMode
public void setVerboseMode()Enables verbose function mode -
setSilentMode
public void setSilentMode()Disables function verbose mode (sets default silent mode) -
getVerboseMode
public boolean getVerboseMode()Returns verbose mode status- Returns:
- true if verbose mode is on, otherwise returns false
-
getRecursiveMode
public boolean getRecursiveMode()Gets recursive mode status- Returns:
- true if recursive mode is enabled, otherwise returns false
-
getComputingTime
public double getComputingTime()Gets computing time- Returns:
- computing time in seconds.
-
cloneForThreadSafe
Creates a completely independent 1-1 clone that can be safely used by a separate thread. If the cloned element contains references to other elements (e.g. arguments, functions, constants), then they will also be cloned and the newly created element will contain references to the corresponding clones. Important - the API allows you to extract all these clones.- Returns:
- Cloned object.
-
SYNTAX_ERRORinstead