IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 2, 2008, 7:42:56 AM (18 years ago)
Author:
eugene
Message:

toss out NANs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStats/src/ppStatsFromMetadataParse.c

    r19626 r19806  
    119119
    120120              case PS_DATA_F32:
     121                if (!isfinite(item->data.F32)) continue;
    121122                if (useRMS) {
    122123                    psVectorAppend (entry->vector, PS_SQR(item->data.F32));
     
    126127                break;
    127128              case PS_DATA_F64:
     129                if (!isfinite(item->data.F64)) continue;
    128130                if (useRMS) {
    129131                    psVectorAppend (entry->vector, PS_SQR(item->data.F64));
Note: See TracChangeset for help on using the changeset viewer.