| java.lang.Object org.jfree.data.statistics.MeanAndStandardDeviation
Method Summary | |
public boolean | equals(Object obj) Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). | public Number | getMean() Returns the mean. | public Number | getStandardDeviation() Returns the standard deviation. |
MeanAndStandardDeviation | public MeanAndStandardDeviation(double mean, double standardDeviation)(Code) | | Creates a new mean and standard deviation record.
Parameters: mean - the mean. Parameters: standardDeviation - the standard deviation. |
MeanAndStandardDeviation | public MeanAndStandardDeviation(Number mean, Number standardDeviation)(Code) | | Creates a new mean and standard deviation record.
Parameters: mean - the mean (null permitted). Parameters: standardDeviation - the standard deviation (null permitted. |
equals | public boolean equals(Object obj)(Code) | | Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
getMean | public Number getMean()(Code) | | Returns the mean.
The mean. |
getStandardDeviation | public Number getStandardDeviation()(Code) | | Returns the standard deviation.
The standard deviation. |
|
|