IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33892


Ignore:
Timestamp:
May 18, 2012, 6:31:19 AM (14 years ago)
Author:
eugene
Message:

fix typo on weighted mean errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120405/Ohana/src/relphot/src/liststats.c

    r33886 r33892  
    2222
    2323  myAssert (stats->statmode != STATS_NONE, "programming error, liststats mode not set");
    24   myAssert (weight, "work out logic for NULL weight");
    2524
    2625  ke = ks = dMo = 0;
     
    112111      }
    113112      Mo  = M / W;
    114       dMo = sqrt (dM / R);
     113      dMo = sqrt (dM) / R;
    115114    } else {
    116115      for (i = ks; i < ke; i++) {
     
    122121      }
    123122      Mo  = M / W;
    124       dMo = sqrt (dM / R);
     123      dMo = sqrt (dM) / R;
    125124    }
    126125  } else {
Note: See TracChangeset for help on using the changeset viewer.