Changeset 1610
- Timestamp:
- Aug 24, 2004, 9:59:05 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
dataManip/psMinimize.c (modified) (2 diffs)
-
dataManip/psMinimize.h (modified) (1 diff)
-
math/psMinimize.c (modified) (2 diffs)
-
math/psMinimize.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psMinimize.c
r1609 r1610 1 2 1 /** @file psMinimize.c 3 2 * \brief basic minimization functions … … 10 9 * @author George Gusciora, MHPCC 11 10 * 12 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-08-24 19:5 7:03$11 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-24 19:59:05 $ 14 13 * 15 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/dataManip/psMinimize.h
r1609 r1610 105 105 typedef struct 106 106 { 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 112 112 } 113 113 psMinimization; -
trunk/psLib/src/math/psMinimize.c
r1609 r1610 1 2 1 /** @file psMinimize.c 3 2 * \brief basic minimization functions … … 10 9 * @author George Gusciora, MHPCC 11 10 * 12 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-08-24 19:5 7:03$11 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-24 19:59:05 $ 14 13 * 15 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/math/psMinimize.h
r1609 r1610 105 105 typedef struct 106 106 { 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 112 112 } 113 113 psMinimization;
Note:
See TracChangeset
for help on using the changeset viewer.
