public class GaussNewtonOptimizer extends AbstractLeastSquaresOptimizer
This class solve a least-square problem by solving the normal equations of the linearized problem at each iteration. Either LU decomposition or QR decomposition can be used to solve the normal equations. LU decomposition is faster but QR decomposition is more robust for difficult problems.
evaluations, iterations
Constructor and Description |
---|
GaussNewtonOptimizer(boolean useLUIn,
ConvergenceChecker<PointVectorValuePair> checker) |
GaussNewtonOptimizer(ConvergenceChecker<PointVectorValuePair> checker)
Simple constructor with default settings.
|
Modifier and Type | Method and Description |
---|---|
PointVectorValuePair |
doOptimize()
Performs the bulk of the optimization algorithm.
|
computeCost, computeCovariances, computeResiduals, computeSigma, computeWeightedJacobian, getChiSquare, getRMS, getWeightSquareRoot, optimize, setCost
computeJacobian
computeObjectiveValue, getTarget, getTargetSize, getWeight
getLowerBound, getStartPoint, getUpperBound
getConvergenceChecker, getEvaluations, getIterations, getMaxEvaluations, getMaxIterations, incrementEvaluationCount, incrementIterationCount
public GaussNewtonOptimizer(ConvergenceChecker<PointVectorValuePair> checker)
checker
- Convergence checker.public GaussNewtonOptimizer(boolean useLUIn, ConvergenceChecker<PointVectorValuePair> checker)
useLUIn
- If true
, the normal equations will be solved
using LU decomposition, otherwise they will be solved using QR
decomposition.checker
- Convergence checker.public PointVectorValuePair doOptimize()
doOptimize
in class BaseOptimizer<PointVectorValuePair>
Copyright © 2023 CNES. All rights reserved.