Changeset 4457 for trunk/psLib/src/dataIO/psLookupTable.h
- Timestamp:
- Jul 5, 2005, 5:04:35 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataIO/psLookupTable.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataIO/psLookupTable.h
r4366 r4457 7 7 * @author Ross Harman, MHPCC 8 8 * 9 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-0 6-23 03:19:29$9 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-07-06 03:04:35 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 33 33 psVector *index; ///< Vector of independent index values 34 34 psArray *values; ///< Array of dependent table values corresponding to index values 35 psF64 validFrom;///< Lower bound for rable read36 psF64 validTo;///< Upper bound for table read35 const double validFrom; ///< Lower bound for rable read 36 const double validTo; ///< Upper bound for table read 37 37 } 38 38 psLookupTable; … … 100 100 * Reads a lookup table and fills corresponding psLookupTable struct. 101 101 * 102 * @return psS32Number of valid lines read102 * @return long: Number of valid lines read 103 103 */ 104 104 long psLookupTableRead( … … 111 111 * conditions. 112 112 * 113 * @return psLookupTable* New psLookupTable struct113 * @return double Interpolation value at index 114 114 */ 115 psF64psLookupTableInterpolate(116 const psLookupTable *table, ///< Table with data117 psF64 index,///< Value to be interpolated118 psS32 column///< Column in table to be interpolated115 double psLookupTableInterpolate( 116 const psLookupTable *table, ///< Table with data 117 double index, ///< Value to be interpolated 118 long column ///< Column in table to be interpolated 119 119 ); 120 120 … … 124 124 * conditions. 125 125 * 126 * @return ps LookupTable* New psLookupTable struct126 * @return psVector* Interpolation values calculated at index 127 127 */ 128 128 psVector* psLookupTableInterpolateAll( 129 psLookupTable *table,///< Table with data130 psF64 index///< Value to be interpolated129 const psLookupTable *table, ///< Table with data 130 double index ///< Value to be interpolated 131 131 ); 132 132
Note:
See TracChangeset
for help on using the changeset viewer.
