IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1610


Ignore:
Timestamp:
Aug 24, 2004, 9:59:05 AM (22 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psLib/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psMinimize.c

    r1609 r1610  
    1 
    21/** @file  psMinimize.c
    32 *  \brief basic minimization functions
     
    109 *  @author George Gusciora, MHPCC
    1110 *
    12  *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-08-24 19:57:03 $
     11 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-24 19:59:05 $
    1413 *
    1514 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/dataManip/psMinimize.h

    r1609 r1610  
    105105typedef struct
    106106{
    107     const int maxIter;
    108     const float tol;
    109     float value;
    110     int iter;
    111     float lastDelta;
     107    const int maxIter;   ///< Convergence limit
     108    const float tol;   ///< Error Tolerance
     109    float value;   ///< Value of function at minimum
     110    int iter;    ///< Number of iterations required
     111    float lastDelta;   ///< The last difference for the fit
    112112}
    113113psMinimization;
  • trunk/psLib/src/math/psMinimize.c

    r1609 r1610  
    1 
    21/** @file  psMinimize.c
    32 *  \brief basic minimization functions
     
    109 *  @author George Gusciora, MHPCC
    1110 *
    12  *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-08-24 19:57:03 $
     11 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-24 19:59:05 $
    1413 *
    1514 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/math/psMinimize.h

    r1609 r1610  
    105105typedef struct
    106106{
    107     const int maxIter;
    108     const float tol;
    109     float value;
    110     int iter;
    111     float lastDelta;
     107    const int maxIter;   ///< Convergence limit
     108    const float tol;   ///< Error Tolerance
     109    float value;   ///< Value of function at minimum
     110    int iter;    ///< Number of iterations required
     111    float lastDelta;   ///< The last difference for the fit
    112112}
    113113psMinimization;
Note: See TracChangeset for help on using the changeset viewer.