Uses of Class
org.apache.commons.math3.optim.univariate.UnivariatePointValuePair
-
Packages that use UnivariatePointValuePair Package Description org.apache.commons.math3.optim.nonlinear.scalar Algorithms for optimizing a scalar function.org.apache.commons.math3.optim.univariate One-dimensional optimization algorithms. -
-
Uses of UnivariatePointValuePair in org.apache.commons.math3.optim.nonlinear.scalar
Methods in org.apache.commons.math3.optim.nonlinear.scalar that return UnivariatePointValuePair Modifier and Type Method Description UnivariatePointValuePairLineSearch. search(double[] startPoint, double[] direction)Finds the numberalphathat optimizesf(startPoint + alpha * direction). -
Uses of UnivariatePointValuePair in org.apache.commons.math3.optim.univariate
Fields in org.apache.commons.math3.optim.univariate declared as UnivariatePointValuePair Modifier and Type Field Description private UnivariatePointValuePair[]MultiStartUnivariateOptimizer. optimaFound optima.Methods in org.apache.commons.math3.optim.univariate that return UnivariatePointValuePair Modifier and Type Method Description private UnivariatePointValuePairBrentOptimizer. best(UnivariatePointValuePair a, UnivariatePointValuePair b, boolean isMinim)Selects the best of two points.protected UnivariatePointValuePairBrentOptimizer. doOptimize()Performs the bulk of the optimization algorithm.protected UnivariatePointValuePairMultiStartUnivariateOptimizer. doOptimize()Performs the bulk of the optimization algorithm.UnivariatePointValuePair[]MultiStartUnivariateOptimizer. getOptima()Gets all the optima found during the last call tooptimize.UnivariatePointValuePairMultiStartUnivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization.UnivariatePointValuePairUnivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization.Methods in org.apache.commons.math3.optim.univariate with parameters of type UnivariatePointValuePair Modifier and Type Method Description private UnivariatePointValuePairBrentOptimizer. best(UnivariatePointValuePair a, UnivariatePointValuePair b, boolean isMinim)Selects the best of two points.booleanSimpleUnivariateValueChecker. converged(int iteration, UnivariatePointValuePair previous, UnivariatePointValuePair current)Check if the optimization algorithm has converged considering the last two points.Constructor parameters in org.apache.commons.math3.optim.univariate with type arguments of type UnivariatePointValuePair Constructor Description BrentOptimizer(double rel, double abs, ConvergenceChecker<UnivariatePointValuePair> checker)The arguments are used implement the original stopping criterion of Brent's algorithm.UnivariateOptimizer(ConvergenceChecker<UnivariatePointValuePair> checker)
-