Changeset 8627 for trunk/psLib/src/math/psMinimizePolyFit.c
- Timestamp:
- Aug 25, 2006, 6:34:28 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMinimizePolyFit.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMinimizePolyFit.c
r8467 r8627 10 10 * @author EAM, IfA 11 11 * 12 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-08-2 2 15:01:12$12 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-08-26 04:34:28 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 816 816 // 817 817 for (psS32 N = 0; N < stats->clipIter; N++) { 818 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n" );818 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n", N); 819 819 psS32 Nkeep = 0; 820 820 if (psTraceGetLevel(__func__) >= 6) { … … 894 894 // since the polynomial fit won't change. 895 895 // 896 psTrace("psLib.math", 6, "keeping %d of % d pts for fit\n", Nkeep, x->n);896 psTrace("psLib.math", 6, "keeping %d of %ld pts for fit\n", Nkeep, x->n); 897 897 psFree(fit); 898 898 } … … 1250 1250 1251 1251 for (psS32 N = 0; N < stats->clipIter; N++) { 1252 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n" );1252 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n", N); 1253 1253 psS32 Nkeep = 0; 1254 1254 if (psTraceGetLevel(__func__) >= 6) { … … 1331 1331 } 1332 1332 1333 psTrace("psLib.math", 6, "keeping %d of % d pts for fit\n", Nkeep, x->n);1333 psTrace("psLib.math", 6, "keeping %d of %ld pts for fit\n", Nkeep, x->n); 1334 1334 psFree(fit); 1335 1335 } … … 1770 1770 1771 1771 for (psS32 N = 0; N < stats->clipIter; N++) { 1772 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n" );1772 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial1D()\n", N); 1773 1773 psS32 Nkeep = 0; 1774 1774 if (psTraceGetLevel(__func__) >= 6) { … … 1851 1851 } 1852 1852 1853 psTrace("psLib.math", 6, "keeping %d of % d pts for fit\n", Nkeep, x->n);1853 psTrace("psLib.math", 6, "keeping %d of %ld pts for fit\n", Nkeep, x->n); 1854 1854 psFree(fit); 1855 1855 } … … 2338 2338 2339 2339 for (psS32 N = 0; N < stats->clipIter; N++) { 2340 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial4D()\n" );2340 psTrace("psLib.math", 6, "Loop iteration %d. Calling psVectorFitPolynomial4D()\n", N); 2341 2341 psS32 Nkeep = 0; 2342 2342 if (psTraceGetLevel(__func__) >= 6) { … … 2420 2420 } 2421 2421 2422 psTrace("psLib.math", 6, "keeping %d of % d pts for fit\n", Nkeep, x->n);2422 psTrace("psLib.math", 6, "keeping %d of %ld pts for fit\n", Nkeep, x->n); 2423 2423 psFree (fit); 2424 2424 }
Note:
See TracChangeset
for help on using the changeset viewer.
