IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 12, 2011, 9:32:08 PM (16 years ago)
Author:
eugene
Message:

add errors to kernel coeffs; calculate and plot chisq and moments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20101205/psModules/src/imcombine/pmSubtractionKernels.c

    r29597 r30266  
    3030    psFree(kernels->solution1);
    3131    psFree(kernels->solution2);
     32    psFree(kernels->solution1err);
     33    psFree(kernels->solution2err);
    3234    psFree(kernels->sampleStamps);
    3335}
     
    745747    kernels->solution1 = NULL;
    746748    kernels->solution2 = NULL;
     749    kernels->solution1err = NULL;
     750    kernels->solution2err = NULL;
    747751    kernels->mean = NAN;
    748752    kernels->rms = NAN;
     
    14351439    out->solution1 = in->solution1 ? psVectorCopy(NULL, in->solution1, PS_TYPE_F64) : NULL;
    14361440    out->solution2 = in->solution2 ? psVectorCopy(NULL, in->solution2, PS_TYPE_F64) : NULL;
     1441    out->solution1err = in->solution1err ? psVectorCopy(NULL, in->solution1err, PS_TYPE_F64) : NULL;
     1442    out->solution2err = in->solution2err ? psVectorCopy(NULL, in->solution2err, PS_TYPE_F64) : NULL;
    14371443    out->sampleStamps = psMemIncrRefCounter(in->sampleStamps);
    14381444
Note: See TracChangeset for help on using the changeset viewer.