IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 3, 2013, 8:40:02 AM (13 years ago)
Author:
eugene
Message:

new convergence criterion for LMM (in _Alt only for now)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130509/psLib/src/math/psMinimizeLMM.h

    r28998 r35617  
    134134);
    135135
     136/** Minimizes a specified function based on the Levenberg-Marquardt method
     137    Uses alternative convergence criterion.
     138 *
     139 *  @return bool:   True if successful.
     140 */
     141bool psMinimizeLMChi2_Alt(
     142    psMinimization *min,               ///< Minimization specification
     143    psImage *covar,                    ///< Covariance matrix
     144    psVector *params,                  ///< "Best Guess" for the parameters that minimize func
     145    psMinConstraint *constraint, ///< Constraints on the parameters
     146    const psArray *x,                  ///< Measurement ordinates of multiple vectors
     147    const psVector *y,                 ///< Measurement coordinates
     148    const psVector *yWt,               ///< Errors in the measurement coordinates
     149    psMinimizeLMChi2Func func          ///< Specified function
     150);
     151
    136152bool psMinimizeGaussNewtonDelta (
    137153    psVector *delta,
Note: See TracChangeset for help on using the changeset viewer.