IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6346 for trunk/psLib/src/math


Ignore:
Timestamp:
Feb 7, 2006, 1:14:21 PM (20 years ago)
Author:
gusciora
Message:

....

Location:
trunk/psLib/src/math
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMinimizeLMM.c

    r6322 r6346  
    1010 *  @author EAM, IfA
    1111 *
    12  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-02-03 22:05:22 $
     12 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-02-07 23:14:21 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    513513}
    514514
    515 // XXX EAM : temporary gauss-jordan solver based on gene's
     515// This is a temporary gauss-jordan solver based on gene's
    516516// version based on the Numerical Recipes version
    517517bool psGaussJordan(
  • trunk/psLib/src/math/psMinimizePowell.c

    r6322 r6346  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2006-02-03 22:05:22 $
     11 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2006-02-07 23:14:21 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    740740    psMinimization *min,
    741741    psVector *params,
    742     const psVector *paramMask,
     742    psMinConstrain *constrain,
    743743    const psArray *coords,
    744744    const psVector *value,
     
    751751    Chi2PowellFunc = model;
    752752
    753     return(psMinimizePowell(min, params, paramMask, coords, myPowellChi2Func));
     753    return(psMinimizePowell(min, params, constrain->paramMask, coords, myPowellChi2Func));
    754754}
    755755
  • trunk/psLib/src/math/psMinimizePowell.h

    r6185 r6346  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-01-23 20:44:29 $
     10 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-02-07 23:14:21 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8181    psMinimization *min,               ///< Minimization specification
    8282    psVector *params,                  ///< "Best guess" for parameters that minimize func
    83     const psVector *paramMask,         ///< Parameters to be held fixed by minimizer
     83    psMinConstrain *constrain,
    8484    const psArray *coords,             ///< Measurement coordinates
    8585    const psVector *value,             ///< Measured values at the coordinates
Note: See TracChangeset for help on using the changeset viewer.