IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7545


Ignore:
Timestamp:
Jun 13, 2006, 1:54:57 PM (20 years ago)
Author:
Paul Price
Message:

Removing stats for psLookupTableInterpolateAll

Location:
trunk/psLib/src/types
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psLookupTable.c

    r6484 r7545  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-02-24 23:43:15 $
     9*  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-06-13 23:54:57 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    846846psVector* psLookupTableInterpolateAll(
    847847    const psLookupTable *table,
    848     double index,
    849     psVector *stats)
     848    double index)
    850849{
    851850    long numCols = 0;
     
    856855    numCols = table->values->n;
    857856    PS_ASSERT_INT_UNEQUAL(numCols, 0,NULL);
    858     if (stats != NULL) {
    859         // XXX: Determine what the stats vector is for.  Not documented in SDRS.
    860         psLogMsg(__func__, PS_LOG_WARN, "WARNING: the psVector stats is currently ignored by this function.\n");
    861     }
    862857
    863858    // Create output vector
  • trunk/psLib/src/types/psLookupTable.h

    r6204 r7545  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-01-26 21:10:22 $
     9*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-06-13 23:54:57 $
    1111*
    1212*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    140140psVector* psLookupTableInterpolateAll(
    141141    const psLookupTable *table,         ///< Table with data
    142     double index,                       ///< Value to be interpolated
    143     psVector *stats                     ///< Unknown
     142    double index                       ///< Value to be interpolated
    144143);
    145144
Note: See TracChangeset for help on using the changeset viewer.