IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 24, 2004, 12:14:39 PM (22 years ago)
Author:
gusciora
Message:

Changing order of args to poly eval function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/dataManip/tst_psFunc01.c

    r2392 r2436  
    33    specified Gaussian at some X.
    44 
    5     It also tests the psGaussianDev() procedure.
     5    It also tests the p_psGaussianDev() procedure.
    66 *****************************************************************************/
    77#include <stdio.h>
     
    4949    printPositiveTestHeader(stdout,
    5050                            "psFunctions functions",
    51                             "psGaussianDev()");
     51                            "p_psGaussianDev()");
    5252
    53     myGaussData = psGaussianDev(MY_MEAN, MY_STDEV, N);
     53    myGaussData = p_psGaussianDev(MY_MEAN, MY_STDEV, N);
    5454    for (psS32 i = 0; i < N ; i++) {
    5555        printf("Gaussian Deviate [%d] is %f\n", i, myGaussData->data.F32[i]);
     
    5757
    5858    if ( myGaussData->type.type != PS_TYPE_F32) {
    59         psAbort(__func__,"psGaussianDev did not return a vector of type F32");
     59        psAbort(__func__,"p_psGaussianDev did not return a vector of type F32");
    6060    }
    6161
     
    7070    printFooter(stdout,
    7171                "psFunctions functions",
    72                 "psGaussianDev()",
     72                "p_psGaussianDev()",
    7373                testStatus);
    7474
Note: See TracChangeset for help on using the changeset viewer.