IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 21, 2004, 10:42:07 AM (22 years ago)
Author:
gusciora
Message:

Added errors arguments to the VectorStats and VectorHistogram functions.
The arguments are ignored in the histogram and robust stats code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psConstants.h

    r2762 r2778  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2004-12-20 21:39:42 $
     8 *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2004-12-21 20:42:07 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    486486(((A) < (B)) ? (A) : (B)) \
    487487
     488#define PS_SQR(A) \
     489((A) * (A)) \
     490
     491#ifdef DARWIN
     492#define PS_SQRT_F32(A) ((float) sqrt(A))
     493#else
     494#define PS_SQRT_F32(A) (sqrtf(A))
     495#endif
Note: See TracChangeset for help on using the changeset viewer.