Uses of Class
org.apache.commons.math.optimization.OptimizationException
-
Packages that use OptimizationException Package Description org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages.org.apache.commons.math.optimization.direct This package provides optimization algorithms that don't require derivatives.org.apache.commons.math.optimization.fitting This package provides classes to perform curve fitting.org.apache.commons.math.optimization.general This package provides optimization algorithms that require derivatives.org.apache.commons.math.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of OptimizationException in org.apache.commons.math.optimization
Methods in org.apache.commons.math.optimization that throw OptimizationException Modifier and Type Method Description RealPointValuePairDifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.VectorialPointValuePairDifferentiableMultivariateVectorialOptimizer. optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)Optimizes an objective function.RealPointValuePairMultiStartDifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.VectorialPointValuePairMultiStartDifferentiableMultivariateVectorialOptimizer. optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)Optimizes an objective function.RealPointValuePairMultiStartMultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.RealPointValuePairMultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function. -
Uses of OptimizationException in org.apache.commons.math.optimization.direct
Methods in org.apache.commons.math.optimization.direct that throw OptimizationException Modifier and Type Method Description protected RealPointValuePairPowellOptimizer. doOptimize()Perform the bulk of optimization algorithm.protected voidDirectSearchOptimizer. evaluateSimplex(java.util.Comparator<RealPointValuePair> comparator)Evaluate all the non-evaluated points of the simplex.protected voidDirectSearchOptimizer. incrementIterationsCounter()Increment the iterations counter by 1.protected abstract voidDirectSearchOptimizer. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)Compute the next simplex of the algorithm.protected voidMultiDirectional. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)Compute the next simplex of the algorithm.protected voidNelderMead. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)Compute the next simplex of the algorithm.RealPointValuePairDirectSearchOptimizer. optimize(MultivariateRealFunction function, GoalType goalType, double[] startPoint)Optimizes an objective function. -
Uses of OptimizationException in org.apache.commons.math.optimization.fitting
Methods in org.apache.commons.math.optimization.fitting that throw OptimizationException Modifier and Type Method Description double[]CurveFitter. fit(ParametricRealFunction f, double[] initialGuess)Fit a curve.GaussianFunctionGaussianFitter. fit()Fits Gaussian function to the observed points.HarmonicFunctionHarmonicFitter. fit()Fit an harmonic function to the observed points.PolynomialFunctionPolynomialFitter. fit()Get the polynomial fitting the weighted (x, y) points.voidHarmonicCoefficientsGuesser. guess()Estimate a first guess of the coefficients. -
Uses of OptimizationException in org.apache.commons.math.optimization.general
Methods in org.apache.commons.math.optimization.general that throw OptimizationException Modifier and Type Method Description protected abstract VectorialPointValuePairAbstractLeastSquaresOptimizer. doOptimize()Perform the bulk of optimization algorithm.protected abstract RealPointValuePairAbstractScalarDifferentiableOptimizer. doOptimize()Perform the bulk of optimization algorithm.VectorialPointValuePairGaussNewtonOptimizer. doOptimize()Perform the bulk of optimization algorithm.protected VectorialPointValuePairLevenbergMarquardtOptimizer. doOptimize()Perform the bulk of optimization algorithm.protected RealPointValuePairNonLinearConjugateGradientOptimizer. doOptimize()Perform the bulk of optimization algorithm.double[][]AbstractLeastSquaresOptimizer. getCovariances()Get the covariance matrix of optimized parameters.double[]AbstractLeastSquaresOptimizer. guessParametersErrors()Guess the errors in optimized parameters.protected voidAbstractLeastSquaresOptimizer. incrementIterationsCounter()Increment the iterations counter by 1.protected voidAbstractScalarDifferentiableOptimizer. incrementIterationsCounter()Increment the iterations counter by 1.VectorialPointValuePairAbstractLeastSquaresOptimizer. optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint)Optimizes an objective function.RealPointValuePairAbstractScalarDifferentiableOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function. -
Uses of OptimizationException in org.apache.commons.math.optimization.linear
Subclasses of OptimizationException in org.apache.commons.math.optimization.linear Modifier and Type Class Description classNoFeasibleSolutionExceptionThis class represents exceptions thrown by optimizers when no solution fulfills the constraints.classUnboundedSolutionExceptionThis class represents exceptions thrown by optimizers when a solution escapes to infinity.Methods in org.apache.commons.math.optimization.linear that throw OptimizationException Modifier and Type Method Description protected voidSimplexSolver. doIteration(org.apache.commons.math.optimization.linear.SimplexTableau tableau)Runs one iteration of the Simplex method on the given model.protected abstract RealPointValuePairAbstractLinearOptimizer. doOptimize()Perform the bulk of optimization algorithm.RealPointValuePairSimplexSolver. doOptimize()Perform the bulk of optimization algorithm.protected voidAbstractLinearOptimizer. incrementIterationsCounter()Increment the iterations counter by 1.RealPointValuePairAbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Optimizes an objective function.RealPointValuePairLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Optimizes an objective function.protected voidSimplexSolver. solvePhase1(org.apache.commons.math.optimization.linear.SimplexTableau tableau)Solves Phase 1 of the Simplex method.
-