IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1298


Ignore:
Timestamp:
Jul 27, 2004, 9:51:55 AM (22 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psLib/src
Files:
5 edited

Legend:

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

    r1294 r1298  
    1212 *  @author George Gusciora, MHPCC
    1313 *
    14  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-07-24 03:04:12 $
     14 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-07-27 19:51:55 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#if !defined(PS_FUNCTIONS_H)
    2121#define PS_FUNCTIONS_H
    22 
    2322#include "psVector.h"
    24 
    2523
    2624/** \addtogroup Stats
  • trunk/psLib/src/dataManip/psStats.c

    r1293 r1298  
    18041804
    18051805    // XXX: Should we abort if (stats->min == stats->max)?
    1806     if (stats->min >= stats->max) {
     1806    if ((stats->options & PS_STAT_USE_RANGE) &&
     1807            (stats->min >= stats->max)) {
    18071808        psAbort(__func__, "psVectorStats() called with range: %f to %f\n",
    18081809                stats->min, stats->max);
    18091810    }
    1810 
    1811 
    18121811
    18131812    PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
  • trunk/psLib/src/math/psPolynomial.h

    r1294 r1298  
    1212 *  @author George Gusciora, MHPCC
    1313 *
    14  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-07-24 03:04:12 $
     14 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-07-27 19:51:55 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#if !defined(PS_FUNCTIONS_H)
    2121#define PS_FUNCTIONS_H
    22 
    2322#include "psVector.h"
    24 
    2523
    2624/** \addtogroup Stats
  • trunk/psLib/src/math/psSpline.h

    r1294 r1298  
    1212 *  @author George Gusciora, MHPCC
    1313 *
    14  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-07-24 03:04:12 $
     14 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-07-27 19:51:55 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#if !defined(PS_FUNCTIONS_H)
    2121#define PS_FUNCTIONS_H
    22 
    2322#include "psVector.h"
    24 
    2523
    2624/** \addtogroup Stats
  • trunk/psLib/src/math/psStats.c

    r1293 r1298  
    18041804
    18051805    // XXX: Should we abort if (stats->min == stats->max)?
    1806     if (stats->min >= stats->max) {
     1806    if ((stats->options & PS_STAT_USE_RANGE) &&
     1807            (stats->min >= stats->max)) {
    18071808        psAbort(__func__, "psVectorStats() called with range: %f to %f\n",
    18081809                stats->min, stats->max);
    18091810    }
    1810 
    1811 
    18121811
    18131812    PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
Note: See TracChangeset for help on using the changeset viewer.