Changeset 1298
- Timestamp:
- Jul 27, 2004, 9:51:55 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 5 edited
-
dataManip/psFunctions.h (modified) (2 diffs)
-
dataManip/psStats.c (modified) (1 diff)
-
math/psPolynomial.h (modified) (2 diffs)
-
math/psSpline.h (modified) (2 diffs)
-
math/psStats.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psFunctions.h
r1294 r1298 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-07-2 4 03:04:12$14 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-07-27 19:51:55 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #if !defined(PS_FUNCTIONS_H) 21 21 #define PS_FUNCTIONS_H 22 23 22 #include "psVector.h" 24 25 23 26 24 /** \addtogroup Stats -
trunk/psLib/src/dataManip/psStats.c
r1293 r1298 1804 1804 1805 1805 // 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)) { 1807 1808 psAbort(__func__, "psVectorStats() called with range: %f to %f\n", 1808 1809 stats->min, stats->max); 1809 1810 } 1810 1811 1812 1811 1813 1812 PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32); -
trunk/psLib/src/math/psPolynomial.h
r1294 r1298 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-07-2 4 03:04:12$14 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-07-27 19:51:55 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #if !defined(PS_FUNCTIONS_H) 21 21 #define PS_FUNCTIONS_H 22 23 22 #include "psVector.h" 24 25 23 26 24 /** \addtogroup Stats -
trunk/psLib/src/math/psSpline.h
r1294 r1298 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-07-2 4 03:04:12$14 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-07-27 19:51:55 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #if !defined(PS_FUNCTIONS_H) 21 21 #define PS_FUNCTIONS_H 22 23 22 #include "psVector.h" 24 25 23 26 24 /** \addtogroup Stats -
trunk/psLib/src/math/psStats.c
r1293 r1298 1804 1804 1805 1805 // 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)) { 1807 1808 psAbort(__func__, "psVectorStats() called with range: %f to %f\n", 1808 1809 stats->min, stats->max); 1809 1810 } 1810 1811 1812 1811 1813 1812 PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
Note:
See TracChangeset
for help on using the changeset viewer.
