Interface LeastSquaresOptimizer
- All Known Implementing Classes:
GaussNewtonOptimizer,LevenbergMarquardtOptimizer
public interface LeastSquaresOptimizer
An algorithm that can be applied to a non-linear least squares problem.
- Since:
- 3.3
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceThe optimum found by the optimizer. -
Method Summary
Modifier and TypeMethodDescriptionoptimize(LeastSquaresProblem leastSquaresProblem) Solve the non-linear least squares problem.
-
Method Details
-
optimize
Solve the non-linear least squares problem.- Parameters:
leastSquaresProblem- the problem definition, including model function and convergence criteria.- Returns:
- The optimum.
-