Uses of Class
org.mariuszgromada.math.mxparser.Expression
Packages that use Expression
Package
Description
-
Uses of Expression in com.adriangarcia.metaheuristics.tsmbfoa
Methods in com.adriangarcia.metaheuristics.tsmbfoa that return ExpressionMethods in com.adriangarcia.metaheuristics.tsmbfoa that return types with arguments of type ExpressionModifier and TypeMethodDescriptionprotected ArrayList<Expression>
Function.getExpressionConstEquality()
protected ArrayList<Expression>
Function.getExpressionConstInequality()
Methods in com.adriangarcia.metaheuristics.tsmbfoa with parameters of type ExpressionModifier and TypeMethodDescriptionprotected void
Function.setExpressionOF
(Expression expressionOF) Method parameters in com.adriangarcia.metaheuristics.tsmbfoa with type arguments of type ExpressionModifier and TypeMethodDescriptionprotected void
Function.setExpressionConstEquality
(ArrayList<Expression> expressionConstEquality) protected void
Function.setExpressionConstInequality
(ArrayList<Expression> expressionConstInequality) -
Uses of Expression in org.mariuszgromada.math.mxparser
Methods in org.mariuszgromada.math.mxparser that return ExpressionMethods in org.mariuszgromada.math.mxparser with parameters of type ExpressionModifier and TypeMethodDescriptionstatic final double
mXparser.getFunctionValue
(Expression f, Argument x, double x0) Calculates function f(x0) (given as expression) assigning Argument x = x0;static final double[]
mXparser.getFunctionValues
(Expression f, Argument index, double from, double to, double delta) Returns array of double values of the function f(i) calculated on the range: i = from to i = to by step = delta -
Uses of Expression in org.mariuszgromada.math.mxparser.mathcollection
Methods in org.mariuszgromada.math.mxparser.mathcollection with parameters of type ExpressionModifier and TypeMethodDescriptionstatic final double
Statistics.avg
(Expression f, Argument index, double from, double to, double delta) Average from sample function values - iterative operator.static final double
Calculus.backwardDifference
(Expression f, double h, Argument x) Backward difference(h) operator (at the current value of the argument x)static final double
Calculus.backwardDifference
(Expression f, double h, Argument x, double x0) Backward difference(h) operator (at x = x0)static final double
Calculus.backwardDifference
(Expression f, Argument x) Backward difference(1) operator (at current value of argument x)static final double
Calculus.backwardDifference
(Expression f, Argument x, double x0) Backward difference(1) operator (at x = x0).static final double
Calculus.derivative
(Expression f, Argument x, double x0, int derType, double eps, int maxSteps) Numerical derivative at x = x0static final double
Calculus.derivativeNth
(Expression f, double n, Argument x, double x0, int derType, double eps, int maxSteps) Numerical n-th derivative at x = x0 (you should avoid calculation of derivatives with order higher than 2).static final double
Calculus.forwardDifference
(Expression f, double h, Argument x) Forward difference(h) operator (at the current value of the argument x)static final double
Calculus.forwardDifference
(Expression f, double h, Argument x, double x0) Forward difference(h) operator (at x = x0)static final double
Calculus.forwardDifference
(Expression f, Argument x) Forward difference(1) operator (at current value of argument x)static final double
Calculus.forwardDifference
(Expression f, Argument x, double x0) Forward difference(1) operator (at x = x0)static final double
Calculus.integralTrapezoid
(Expression f, Argument x, double a, double b, double eps, int maxSteps) Trapezoid numerical integrationstatic final double
NumberTheory.max
(Expression f, Argument index, double from, double to, double delta) Maximum value - iterative operator.static final double
NumberTheory.min
(Expression f, Argument index, double from, double to, double delta) Minimum value - iterative operator.static final double
NumberTheory.piProduct
(Expression f, Argument index, double from, double to, double delta) Product operatorstatic final double
NumberTheory.sigmaSummation
(Expression f, Argument index, double from, double to, double delta) Summation operator (SIGMA FROM i = a, to b, f(i) by deltastatic final double
Calculus.solveBrent
(Expression f, Argument x, double a, double b, double eps, double maxSteps) Brent solver (Brent root finder)static final double
Statistics.std
(Expression f, Argument index, double from, double to, double delta) Bias-corrected standard deviation from sample function values - iterative operator.static final double
Statistics.var
(Expression f, Argument index, double from, double to, double delta) Bias-corrected variance from sample function values - iterative operator.