예제 #1
0
 public static void CFCFilter(this MMEChannel source, MMEFilter filter)
 {
     source.Values = ApplyFilter(source.Values, source.SampleInterval, filter);
 }
예제 #2
0
 public static void CFCFilter(this MMEChannel source, int filterClass)
 {
     source.Values = ApplyFilter(source.Values, source.SampleInterval, GetFilterEnum(filterClass));
 }
예제 #3
0
 public MMEChannelModel(MMEChannel chn)
 {
     this.chn = chn;
 }