| java.lang.Object org.jfree.data.function.NormalDistributionFunction2D
NormalDistributionFunction2D | public class NormalDistributionFunction2D implements Function2D(Code) | | A normal distribution function.
|
Method Summary | |
public double | getMean() Returns the mean for the function. | public double | getStandardDeviation() Returns the standard deviation for the function. | public double | getValue(double x) Returns the function value.
Parameters: x - the x-value. |
NormalDistributionFunction2D | public NormalDistributionFunction2D(double mean, double std)(Code) | | Constructs a new normal distribution function.
Parameters: mean - the mean. Parameters: std - the standard deviation. |
getMean | public double getMean()(Code) | | Returns the mean for the function.
The mean. |
getStandardDeviation | public double getStandardDeviation()(Code) | | Returns the standard deviation for the function.
The standard deviation. |
getValue | public double getValue(double x)(Code) | | Returns the function value.
Parameters: x - the x-value. The value. |
|
|