Changeset 6204 for trunk/psLib/src/types
- Timestamp:
- Jan 26, 2006, 11:10:22 AM (21 years ago)
- Location:
- trunk/psLib/src/types
- Files:
-
- 2 edited
-
psLookupTable.c (modified) (3 diffs)
-
psLookupTable.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/types/psLookupTable.c
r5522 r6204 7 7 * @author Ross Harman, MHPCC 8 8 * 9 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $10 * @date $Date: 200 5-11-16 02:40:13$9 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-01-26 21:10:22 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii … … 841 841 } 842 842 843 psVector* psLookupTableInterpolateAll(const psLookupTable *table, 844 double index) 843 psVector* psLookupTableInterpolateAll( 844 const psLookupTable *table, 845 double index, 846 psVector *stats) 845 847 { 846 848 long numCols = 0; … … 851 853 numCols = table->values->n; 852 854 PS_ASSERT_INT_UNEQUAL(numCols, 0,NULL); 855 if (stats != NULL) { 856 // XXX: Determine what the stats vector is for. Not documented in SDRS. 857 psLogMsg(__func__, PS_LOG_WARN, "WARNING: the psVector stats is currently ignored by this function.\n"); 858 } 853 859 854 860 // Create output vector -
trunk/psLib/src/types/psLookupTable.h
r4898 r6204 7 7 * @author Ross Harman, MHPCC 8 8 * 9 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $10 * @date $Date: 200 5-08-30 01:14:13$9 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-01-26 21:10:22 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 #include "psVector.h" 20 20 #include "psArray.h" 21 #include "psLogMsg.h" 21 22 22 23 … … 138 139 */ 139 140 psVector* psLookupTableInterpolateAll( 140 const psLookupTable *table, ///< Table with data 141 double index ///< Value to be interpolated 141 const psLookupTable *table, ///< Table with data 142 double index, ///< Value to be interpolated 143 psVector *stats ///< Unknown 142 144 ); 143 145
Note:
See TracChangeset
for help on using the changeset viewer.
