public interface Statistics
Modifier and Type | Interface and Description |
---|---|
static class |
Statistics.Double |
static class |
Statistics.Long |
Modifier and Type | Method and Description |
---|---|
void |
addObservation(double value) |
void |
addObservation(float value) |
void |
addObservation(int value) |
void |
addObservation(long value) |
void |
addObservation(short value) |
double |
getAverage() |
double |
getMaximumDouble() |
double |
getMinimumDouble() |
int |
getNumObservations() |
double |
getVariance() |
java.lang.String |
toHTMLString() |
double getAverage()
double getVariance()
void addObservation(int value)
void addObservation(short value)
void addObservation(float value)
void addObservation(long value)
void addObservation(double value)
java.lang.String toHTMLString()
int getNumObservations()
double getMinimumDouble()
double getMaximumDouble()