Interface LeastSquaresOptimizer

All Known Implementing Classes:
GaussNewtonOptimizer, LevenbergMarquardtOptimizer, SequentialGaussNewtonOptimizer

public interface LeastSquaresOptimizer
An algorithm that can be applied to a non-linear least squares problem.
  • Method Details

    • optimize

      LeastSquaresOptimizer.Optimum optimize(LeastSquaresProblem leastSquaresProblem)
      Solve the non-linear least squares problem.
      Parameters:
      leastSquaresProblem - the problem definition, including model function and convergence criteria.
      Returns:
      The optimum.