IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6348 for trunk/psLib/src/math


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

....

Location:
trunk/psLib/src/math
Files:
3 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
Note: See TracChangeset for help on using the changeset viewer.