IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 19, 2005, 1:58:47 PM (20 years ago)
Author:
gusciora
Message:

Implemented the chi-squared algorithm for calculated Chebyshev poly
coefficients.

File:
1 edited

Legend:

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

    r5294 r5813  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-10-12 21:02:20 $
     13 *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-12-19 23:58:47 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7777    psPolynomialType type;              ///< Polynomial type
    7878    unsigned int nX;             ///< Polynomial order
     79    psF64 p_min;
     80    psF64 p_max;
    7981    psF64 *coeff;                       ///< Coefficients
    8082    psF64 *coeffErr;                    ///< Error in coefficients
     
    298300);
    299301
     302
     303// XXX: Coding Standard
     304psPolynomial1D **createChebyshevPolys(psS32 numPolys);
     305
     306typedef struct
     307{
     308    int n;                              ///< The number of Chebyshev polys.
     309    psPolynomial1D **chebyPolys;        ///< THe chebyshev polys
     310
     311}
     312p_chebyPolys;
     313
     314
     315
    300316/** \} */ // End of MathGroup Functions
    301317
Note: See TracChangeset for help on using the changeset viewer.