Changeset 4995 for trunk/psLib/test/math/tst_psMinimize04_F32.c
- Timestamp:
- Sep 12, 2005, 10:31:24 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/math/tst_psMinimize04_F32.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/math/tst_psMinimize04_F32.c
r4973 r4995 61 61 "psVectorFitPolynomial1D(): equal errors in yErr"); 62 62 63 psVectorFitPolynomial1D(myPoly, x, y, yErr);63 psVectorFitPolynomial1D(myPoly, NULL, 0, y, yErr, x); 64 64 65 65 // for (i=0;i<POLY_ORDER+1;i++) { … … 128 128 "psVectorFitPolynomial1D(): yErr is NULL"); 129 129 130 psVectorFitPolynomial1D(myPoly, x, y, NULL);130 psVectorFitPolynomial1D(myPoly, NULL, 0, y, NULL, x); 131 131 132 132 // for (i=0;i<POLY_ORDER+1;i++) { … … 191 191 "psVectorFitPolynomial1D(): x, yErr is NULL"); 192 192 193 psVectorFitPolynomial1D(myPoly, NULL, y, NULL);193 psVectorFitPolynomial1D(myPoly, NULL, 0, y, NULL, NULL); 194 194 195 195 // for (i=0;i<POLY_ORDER+1;i++) { … … 241 241 242 242 psLogMsg(__func__,PS_LOG_INFO,"Following should generate error for null arguments."); 243 psVectorFitPolynomial1D(NULL, NULL, NULL, NULL); 244 243 244 psVectorFitPolynomial1D(NULL, NULL, 0, NULL, NULL, NULL); 245 245 246 246 psMemCheckCorruption(1);
Note:
See TracChangeset
for help on using the changeset viewer.
