IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 29, 2004, 1:34:28 PM (22 years ago)
Author:
evanalst
Message:

Changed argument normal type from int to bool.

File:
1 edited

Legend:

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

    r1073 r1342  
    2626
    2727    for (x = 0.0 ; x < (MY_MEAN * 2.0) ; x+= 1.0) {
    28         printf("normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, 1));
     28        printf("normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, true));
    2929        x = x + 1.0;
    3030    }
    3131
    3232    for (x = 0.0 ; x < (MY_MEAN * 2.0) ; x+= 1.0) {
    33         printf("NON-normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, 0));
     33        printf("NON-normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, false));
    3434        x = x + 1.0;
    3535    }
Note: See TracChangeset for help on using the changeset viewer.