Class LogNormalDistribution

  • All Implemented Interfaces:
    Serializable, Cloneable

    public class LogNormalDistribution
    extends Distribution
    A log-normal distribution, with two parameters: mean and standard deviation. Note: the mean and standard deviation are for the logarithm of the values. Put another way: if X~LogN(M,S), then mean(log(X))=M, and stdev(log(X))=S
    See Also:
    Serialized Form
    • Constructor Detail

      • LogNormalDistribution

        public LogNormalDistribution​(double mean,
                                     double std)
        Create a log-normal distribution with the given mean and std
        Parameters:
        mean - the mean
        std - the standard deviation