Interface FitSolver

All Known Implementing Classes:
SolverLM, SolverLSM

public interface FitSolver
The interface for fitting solvers.
Author:
shishlo
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    solve(DataStore ds, ModelFunction mf, double[] iniArr, double[] errIniArr, boolean[] useArr)
    Solve the fitting problem.
  • Method Details

    • solve

      boolean solve(DataStore ds, ModelFunction mf, double[] iniArr, double[] errIniArr, boolean[] useArr)
      Solve the fitting problem.
      Parameters:
      ds - The data for fitting.
      iniArr - The initial values of the parameters.
      errIniArr - The parameter values' errors.
      useArr - The mask array specifying if the parameter will be used in fitting.
      mf - The model function
      Returns:
      The boolean value specifying success of fitting.