Class WeibullDistribution

    • Constructor Summary

      Constructors 
      Constructor Description
      WeibullDistribution​(double lambda, double k)
      Construct a Weibull distribution.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double cdf​(double x)
      Gets the cumulative probability F(x) = Pr(X ≤ x).
      double density​(double x)
      The density function, which, if exists, is the derivative of F.
      double entropy()
      Gets the entropy of this distribution.
      double kurtosis()
      Gets the excess kurtosis of this distribution.
      double mean()
      Gets the mean of this distribution.
      double median()
      Gets the median of this distribution.
      double moment​(double x)
      The moment generating function is the expected value of etX.
      double quantile​(double u)
      Gets the quantile, the inverse of the cumulative distribution function.
      double skew()
      Gets the skewness of this distribution.
      double variance()
      Gets the variance of this distribution.