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 void
enter(double num)
int
getCount()
double
getMax()
double
getMean()
double
getMin()
double
getStandardDeviation()
double
getSum()
double
getSumSquares()
String
toString()
-
-
-
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()
-
-