IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 9, 2005, 10:56:17 AM (21 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psFunctions.c

    r3115 r3171  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.86 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-02-03 00:54:10 $
     9 *  @version $Revision: 1.87 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-02-09 20:56:17 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    260260    // Polynomial i has i-th order.
    261261    chebPolys[0]->coeff[0] = 1;
    262     chebPolys[1]->coeff[1] = 1;
     262
     263    // XXX: Bug 296
     264    if (maxChebyPoly > 1) {
     265        chebPolys[1]->coeff[1] = 1;
     266    }
    263267    for (i = 2; i < maxChebyPoly; i++) {
    264268        for (j = 0; j < chebPolys[i - 1]->n; j++) {
Note: See TracChangeset for help on using the changeset viewer.