IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6348


Ignore:
Timestamp:
Feb 7, 2006, 1:39:24 PM (20 years ago)
Author:
gusciora
Message:

....

Location:
trunk/psLib/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psPolynomial.c

    r6305 r6348  
    77*  polynomials.  It also contains a Gaussian functions.
    88*
    9 *  @version $Revision: 1.141 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2006-02-02 21:09:07 $
     9*  @version $Revision: 1.142 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-02-07 23:36:15 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    623623    newPoly->type = type;
    624624    newPoly->nX = nOrder;
    625     newPoly->p_min = NAN;
    626     newPoly->p_max = NAN;
    627625    newPoly->coeff = psAlloc((nOrder + 1) * sizeof(psF64));
    628626    newPoly->coeffErr = psAlloc((nOrder + 1) * sizeof(psF64));
  • trunk/psLib/src/math/psPolynomial.h

    r6204 r6348  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-01-26 21:10:22 $
     13 *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-02-07 23:36:15 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7373{
    7474    psPolynomialType type;              ///< Polynomial type
    75     unsigned int nX;             ///< Polynomial order
    76     psF64 p_min;
    77     psF64 p_max;
     75    unsigned int nX;                    ///< Polynomial order
    7876    psF64 *coeff;                       ///< Coefficients
    7977    psF64 *coeffErr;                    ///< Error in coefficients
  • trunk/psLib/src/math/psStats.h

    r6305 r6348  
    1414 *  @author GLG, MHPCC
    1515 *
    16  *  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2006-02-02 21:09:08 $
     16 *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2006-02-07 23:39:24 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151    PS_STAT_MIN             = 0x001000, ///< Minumum
    5252    PS_STAT_USE_RANGE       = 0x002000, ///< Range
    53     PS_STAT_USE_BINSIZE     = 0x004000, ///< Binsize
     53    PS_STAT_USE_BINSIZE     = 0x004000  ///< Binsize
    5454} psStatsOptions;
    5555
     
    6262    double sampleMedian;               ///< formal median of sample
    6363    double sampleStdev;                ///< standard deviation of sample
     64    double sampleUQ;                   ///< upper quartile of sample
    6465    double sampleLQ;                   ///< lower quartile of sample
    65     double sampleUQ;                   ///< upper quartile of sample
    6666    double robustMedian;               ///< robust median of array
    6767    double robustStdev;                ///< robust standard deviation of array
  • trunk/psLib/src/sys/psType.h

    r6251 r6348  
    1010*  @author Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2006-01-30 20:28:33 $
     12*  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2006-02-07 23:36:15 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7979 */
    8080typedef enum {
    81     PS_TYPE_S8   = 0x0101,             ///< Character.
    82     PS_TYPE_S16  = 0x0102,             ///< Short integer.
    83     PS_TYPE_S32  = 0x0104,             ///< Integer.
    84     PS_TYPE_S64  = 0x0108,             ///< Long integer.
    85     PS_TYPE_U8   = 0x0301,             ///< Unsigned character.
    86     PS_TYPE_U16  = 0x0302,             ///< Unsigned psS16 integer.
    87     PS_TYPE_U32  = 0x0304,             ///< Unsigned integer.
    88     PS_TYPE_U64  = 0x0308,             ///< Unsigned psS64 integer.
    89     PS_TYPE_F32  = 0x0404,             ///< Single-precision Floating point.
    90     PS_TYPE_F64  = 0x0408,             ///< Double-precision floating point.
    91     PS_TYPE_C32  = 0x0808,             ///< Complex numbers consisting of single-precision floating point.
    92     PS_TYPE_C64  = 0x0810,             ///< Complex numbers consisting of double-precision floating point.
    93     PS_TYPE_BOOL = 0x1301              ///< Boolean.
     81    PS_TYPE_S8,                         ///< Character.
     82    PS_TYPE_S16,                        ///< Short integer.
     83    PS_TYPE_S32,                        ///< Integer.
     84    PS_TYPE_S64,                        ///< Long integer.
     85    PS_TYPE_U8,                         ///< Unsigned character.
     86    PS_TYPE_U16,                        ///< Unsigned psS16 integer.
     87    PS_TYPE_U32,                        ///< Unsigned integer.
     88    PS_TYPE_U64,                        ///< Unsigned psS64 integer.
     89    PS_TYPE_F32,                        ///< Single-precision Floating point.
     90    PS_TYPE_F64,                        ///< Double-precision floating point.
     91    PS_TYPE_C32,                        ///< Complex numbers consisting of single-precision floating point.
     92    PS_TYPE_C64,                        ///< Complex numbers consisting of double-precision floating point.
     93    PS_TYPE_BOOL                        ///< Boolean.
    9494} psElemType;
    9595
  • trunk/psLib/src/types/psList.h

    r5174 r6348  
    77 *  @ingroup LinkedList
    88 *
    9  *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-09-29 01:15:38 $
     9 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-02-07 23:36:15 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5959    ///< used internally to improve performance when using indexed access, all
    6060    ///< others are user-level iterators created by psListIteratorAlloc.
    61 
    6261    pthread_mutex_t p_lock;            ///< mutex to lock a node during changes
    6362    void *lock;                        ///< Optional lock for thread safety
Note: See TracChangeset for help on using the changeset viewer.