Go to the documentation of this file.00001 package rlpark.plugin.rltoys.math.averages;
00002
00003 import java.io.Serializable;
00004
00005 public interface MeanVar extends Serializable {
00006 void update(double newValue);
00007
00008 MeanVar newInstance();
00009
00010 double mean();
00011
00012 double var();
00013 }