IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 12, 2005, 10:31:24 AM (21 years ago)
Author:
gusciora
Message:

....

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tst_psMinimize04_F32.c

    r4973 r4995  
    6161                            "psVectorFitPolynomial1D(): equal errors in yErr");
    6262
    63     psVectorFitPolynomial1D(myPoly, x, y, yErr);
     63    psVectorFitPolynomial1D(myPoly, NULL, 0, y, yErr, x);
    6464
    6565    //    for (i=0;i<POLY_ORDER+1;i++) {
     
    128128                            "psVectorFitPolynomial1D(): yErr is NULL");
    129129
    130     psVectorFitPolynomial1D(myPoly, x, y, NULL);
     130    psVectorFitPolynomial1D(myPoly, NULL, 0, y, NULL, x);
    131131
    132132    //    for (i=0;i<POLY_ORDER+1;i++) {
     
    191191                            "psVectorFitPolynomial1D(): x, yErr is NULL");
    192192
    193     psVectorFitPolynomial1D(myPoly, NULL, y, NULL);
     193    psVectorFitPolynomial1D(myPoly, NULL, 0, y, NULL, NULL);
    194194
    195195    //    for (i=0;i<POLY_ORDER+1;i++) {
     
    241241
    242242    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);
    245245
    246246    psMemCheckCorruption(1);
Note: See TracChangeset for help on using the changeset viewer.