Package org.mariuszgromada.math.mxparser
Class RecursiveArgument
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.Argument
org.mariuszgromada.math.mxparser.RecursiveArgument
- All Implemented Interfaces:
Serializable
RecursiveArgument class enables to declare the argument
(variable) which is defined in a recursive way. Such an argument
can be used in further processing in expressions, functions and dependent
or recursive arguments.
For example:
For example:
- 'fib(n) = fin(n-1)+fib(n-2), fib(0) = 0, fib(1) = 1'
- 'factorial(n) = n*factorial(n-1), factorial(0) = 1'
When creating an argument you should avoid:
- names reserved as parser keywords, in general words known in mathematical language as function names, operators (for example: sin, cos, +, -, etc...). Please be informed that after associating the argument 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.
- defining statements with increasing index: 'a(n) = a(n+1) + ... ', otherwise you will get Double.NaN
- if recursion is not properly defined you will get Double.NaN in the result. This is due to the recursion counter inside of the recursive argument. Calculating n-th element requires no more than n recursion steps (usually less than n).
- For negative 'n' you will get Double.NaN.
- 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
Modifier and TypeFieldDescriptionstatic String
static final int
Type identifier for recursive arguments.Fields inherited from class org.mariuszgromada.math.mxparser.Argument
ARGUMENT_INITIAL_VALUE, BODY_EXTENDED, BODY_RUNTIME, DEPENDENT_ARGUMENT, FREE_ARGUMENT, n, NO_SYNTAX_ERRORS, NOT_FOUND, RECURSIVE_ARGUMENT, SYNTAX_ERROR, SYNTAX_ERROR_OR_STATUS_UNKNOWN, syntaxStatusDefinition, TYPE_DESC, TYPE_ID
-
Constructor Summary
ConstructorDescriptionRecursiveArgument
(String argumentName, String recursiveExpressionString, String indexName) Constructor - creates recursive argument.RecursiveArgument
(String argumentName, String recursiveExpressionString, Argument n, PrimitiveElement... elements) Constructor - creates recursive argument.RecursiveArgument
(String argumentDefinitionString, PrimitiveElement... elements) Constructor - creates argument based on the argument definition string. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addBaseCase
(int index, double value) Adds base caseCreates a completely independent 1-1 clone that can be safely used by a separate thread.double
getArgumentValue
(double index) Gets recursive argument valuevoid
Clears all based cases and stored calculated valuesMethods inherited from class org.mariuszgromada.math.mxparser.Argument
addArguments, addConstants, addConstants, addDefinitions, addFunctions, checkSyntax, clone, defineArgument, defineArguments, defineConstant, defineFunction, getArgument, getArgument, getArgumentBodyType, getArgumentExpressionString, getArgumentIndex, getArgumentName, getArgumentsNumber, getArgumentType, getArgumentValue, getArgumentValue, getComputingTime, getConstant, getConstant, getConstantIndex, getConstantsNumber, getDescription, getErrorMessage, getFunction, getFunction, getFunctionIndex, getFunctionsNumber, getRecursiveMode, getVerboseMode, removeAllArguments, removeAllConstants, removeAllFunctions, removeArguments, removeArguments, removeConstants, removeConstants, removeDefinitions, removeFunctions, removeFunctions, setArgumentExpressionString, setArgumentName, setArgumentValue, setDescription, setSilentMode, setVerboseMode
Methods inherited from class org.mariuszgromada.math.mxparser.PrimitiveElement
getMyTypeId
-
Field Details
-
TYPE_ID_RECURSIVE
public static final int TYPE_ID_RECURSIVEType identifier for recursive arguments.- See Also:
-
TYPE_DESC_RECURSIVE
-
-
Constructor Details
-
RecursiveArgument
Constructor - creates recursive argument.- Parameters:
argumentName
- the argument namerecursiveExpressionString
- the recursive expression stringindexName
- index argument name
-
RecursiveArgument
public RecursiveArgument(String argumentName, String recursiveExpressionString, Argument n, PrimitiveElement... elements) Constructor - creates recursive argument.- Parameters:
argumentName
- the argument namerecursiveExpressionString
- the recursive expression stringn
- the index argumentelements
- Optional elements list (variadic - comma separated) of types: Argument, Constant, Function- See Also:
-
RecursiveArgument
Constructor - creates argument based on the argument definition string.- Parameters:
argumentDefinitionString
- Argument definition string, i.e.:- 'x' - only argument name
- 'x=5' - argument name and argument value
- 'x=2*5' - argument name and argument value given as simple expression
- 'x=2*y' - argument name and argument expression (dependent argument 'x' on argument 'y')
- 'x(n)=x(n-1)+x(n-2)' - for recursive arguments)
elements
- Optional elements list (variadic - comma separated) of types: Argument, Constant, Function- See Also:
-
-
Method Details
-
addBaseCase
public void addBaseCase(int index, double value) Adds base case- Parameters:
index
- the base case indexvalue
- the base case value
-
resetAllCases
public void resetAllCases()Clears all based cases and stored calculated values -
getArgumentValue
public double getArgumentValue(double index) Gets recursive argument value- Parameters:
index
- the index- Returns:
- value as double
-
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.- Overrides:
cloneForThreadSafe
in classArgument
- Returns:
- Cloned object.
-