IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 15, 2006, 7:33:48 PM (19 years ago)
Author:
magnier
Message:

some notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psStats.c

    r10730 r10773  
    1313 * use ->min and ->max (PS_STAT_USE_RANGE)
    1414 *
    15  *  @version $Revision: 1.195 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2006-12-14 19:12:05 $
     15 *  @version $Revision: 1.196 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2006-12-16 05:33:48 $
    1717 *
    1818 *  Copyright 2006 IfA, University of Hawaii
     
    484484        // a) Exclude all values x_i for which |x_i - x| > K * stdev
    485485        if (errors) {
     486            // XXXX if we convert errors to variance, this should square the other terms (A*A faster than sqrt(A))
    486487            for (long j = 0; j < myVector->n; j++) {
    487488                if (!tmpMask->data.U8[j] &&
     
    660661        // Generate the histogram
    661662        histogram = psHistogramAlloc(min, max, numBins);
     663        // XXXXX we need to consider this step if errors -> variance
    662664        histogram = psVectorHistogram(histogram, myVector, errors, mask, maskVal);
    663665        if (psTraceGetLevel("psLib.math") >= 8) {
Note: See TracChangeset for help on using the changeset viewer.