Package adams.data.statistics
Class StatCalc
- java.lang.Object
-
- adams.data.statistics.StatCalc
-
- All Implemented Interfaces:
Serializable
public class StatCalc extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StatCalc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenter(double num)intgetCount()doublegetMax()doublegetMean()doublegetMin()doublegetStandardDeviation()doublegetSum()doublegetSumSquares()StringtoString()
-
-
-
Method Detail
-
enter
public void enter(double num)
-
getCount
public int getCount()
-
getSum
public double getSum()
-
getMean
public double getMean()
-
getSumSquares
public double getSumSquares()
-
getStandardDeviation
public double getStandardDeviation()
-
getMin
public double getMin()
-
getMax
public double getMax()
-
-