IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 6, 2005, 6:43:52 PM (21 years ago)
Author:
Paul Price
Message:

Importing current working PAP version (many bug fixes since this branch) straight on top of this version, and tidying up a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pois/src/poisExtractKernel.c

    r3792 r5717  
    3030    }
    3131
    32     psDPolynomial2D *poly = psDPolynomial2DAlloc(config->spatialOrder + 1, config->spatialOrder + 1,
    33                                                 PS_POLYNOMIAL_ORD); // Polynomial for evaluation
     32    psPolynomial2D *poly = psPolynomial2DAlloc(config->spatialOrder + 1, config->spatialOrder + 1,
     33                                              PS_POLYNOMIAL_ORD); // Polynomial for evaluation
    3434    for (int j = 0; j < config->spatialOrder + 1; j++) {
    3535        for (int i = 0; i < config->spatialOrder + 1; i++) {
     
    5151        // Evaluate polynomial
    5252        poly->mask[xOrder][yOrder] = 0;
    53         double evaluation = solution->data.F64[k] * psDPolynomial2DEval(poly, x, y);
     53        double evaluation = solution->data.F64[k] * psPolynomial2DEval(poly, x, y);
    5454        poly->mask[xOrder][yOrder] = 1;
    5555
Note: See TracChangeset for help on using the changeset viewer.