IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 1, 2005, 11:51:25 AM (21 years ago)
Author:
jhoblitt
Message:

change psLookupTable to store it's index as an unsigned long int

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/psLibSDRS.tex

    r4077 r4078  
    1 %%% $Id: psLibSDRS.tex,v 1.252 2005-06-01 21:37:23 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.253 2005-06-01 21:51:25 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    19391939    const char *filename;               ///< File from which data is to be read
    19401940    const char *format;                 ///< scanf-like format string for file
    1941     unsigned int indexCol;              ///< Column of the index vector (starting at zero)
     1941    unsigned long int indexCol;         ///< Column of the index vector (starting at zero)
    19421942    psVector *index;                    ///< Index values
    19431943    psArray *values;                    ///< Corresponding values: an array of vectors
     
    19641964psLookupTable *psLookupTableAlloc(const char *filename, ///< File from which to read
    19651965                                  const char *format, ///< scanf-like format string
    1966                                   int indexCol ///< Column of the index vector (starting at zero)
     1966                                  long int indexCol ///< Column of the index vector (starting at zero)
    19671967                                  );
    19681968\end{prototype}
     
    19771977psLookupTable *psLookupTableImport(psLookupTable *table, ///< Lookup table into which to import
    19781978                                   const psArray *vectors, ///< Array of vectors
    1979                                    int indexCol ///< Index of the index vector in the array of vectors
     1979                                   long int indexCol ///< Index of the index vector in the array of vectors
    19801980                                   );
    19811981\end{prototype}
     
    20072007functions:
    20082008\begin{prototype}
    2009 double psLookupTableInterpolate(const psLookupTable *table, double index, int column, psLookupStatusType *status);
     2009double psLookupTableInterpolate(const psLookupTable *table, double index, long int column, psLookupStatusType *status);
    20102010psVector *psLookupTableInterpolateAll(const psLookupTable *table, double index, psVector *stats);
    20112011\end{prototype}
Note: See TracChangeset for help on using the changeset viewer.