IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 5, 2005, 5:04:35 PM (21 years ago)
Author:
drobbin
Message:

made changes based on revisions in psLib SDRS rev. 15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataIO/psLookupTable.h

    r4366 r4457  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-06-23 03:19:29 $
     9*  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-07-06 03:04:35 $
    1111*
    1212*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3333    psVector *index;                   ///< Vector of independent index values
    3434    psArray *values;                   ///< Array of dependent table values corresponding to index values
    35     psF64 validFrom;                   ///< Lower bound for rable read
    36     psF64 validTo;                     ///< Upper bound for table read
     35    const double validFrom;            ///< Lower bound for rable read
     36    const double validTo;              ///< Upper bound for table read
    3737}
    3838psLookupTable;
     
    100100 *  Reads a lookup table and fills corresponding psLookupTable struct.
    101101 *
    102  *  @return psS32     Number of valid lines read
     102 *  @return long:     Number of valid lines read
    103103 */
    104104long psLookupTableRead(
     
    111111 *  conditions.
    112112 *
    113  *  @return psLookupTable*     New psLookupTable struct
     113 *  @return double     Interpolation value at index
    114114 */
    115 psF64 psLookupTableInterpolate(
    116     const psLookupTable *table,     ///< Table with data
    117     psF64 index,                    ///< Value to be interpolated
    118     psS32 column                    ///< Column in table to be interpolated
     115double psLookupTableInterpolate(
     116    const psLookupTable *table,        ///< Table with data
     117    double index,                      ///< Value to be interpolated
     118    long column                        ///< Column in table to be interpolated
    119119);
    120120
     
    124124 *  conditions.
    125125 *
    126  *  @return psLookupTable*     New psLookupTable struct
     126 *  @return psVector*     Interpolation values calculated at index
    127127 */
    128128psVector* psLookupTableInterpolateAll(
    129     psLookupTable *table,           ///< Table with data
    130     psF64 index                     ///< Value to be interpolated
     129    const psLookupTable *table,        ///< Table with data
     130    double index                       ///< Value to be interpolated
    131131);
    132132
Note: See TracChangeset for help on using the changeset viewer.