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/src/dataManip/psFunctions.c

    r1341 r1342  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-07-29 22:44:34 $
     9 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-07-29 23:34:24 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    8080           float mean,
    8181           float sigma,
    82            int normal)
     82           bool normal)
    8383{
    8484    float tmp = 1.0;
    8585
    86     if (normal == 1) {
     86    if (normal == true) {
    8787        #ifdef DARWIN
    8888        tmp = 1.0 / (float)sqrt(2.0 * M_PI * (sigma * sigma));
Note: See TracChangeset for help on using the changeset viewer.