william

Members
  • Posts

    18
  • Joined

  • Last visited

Everything posted by william

  1. I have a filter in the sequence: PU_data3 = parse(datain,3,",") //? PU_data3 if((PU_data3 > PU_RAIN_C[0]) || (PU_data3 == PU_RAIN_C[0])) PU_data3.time = systime() PU_RAIN_C.addValue(PU_data3) //pick out RAIN COUNTS ? "RAIN = " + PU_data3 endif But this filter does not catch NaN I tried the following : PU_data3 = parse(datain,3,",") //? PU_data3 if((PU_data3 > PU_RAIN_C[0]) || (PU_data3 == PU_RAIN_C[0]) || (PU_data3 == NaN)) PU_data3.time = systime() PU_RAIN_C.addValue(PU_data3) //pick out RAIN COUNTS ? "RAIN = " + PU_data3 endif and I get the following error. C1085 Function without parenthesis: X_ONE_SEQUENCE Line 262 any suggestions appreciated Thanks Bill
  2. I sometimes get bad data collected in the channel data base. Is there a way to delete specific data from the channel data log. In the attached file I want to delete "NaN", row 53 and "98" row 48. Thanks Bill channel_data.pdf