Class LogNormalDistribution


  • public class LogNormalDistribution
    extends Object
    Version:
    1.0
    Author:
    Christian Fries
    • Method Detail

      • density

        public static double density​(double x)
        Returns the value of the density at x.
        Parameters:
        x - Argument
        Returns:
        The value of the density at x.
      • cumulativeDistribution

        public static double cumulativeDistribution​(double x)
        Cumulative distribution function of the standard normal distribution. The implementation is currently using Jakarta commons-math
        Parameters:
        x - A sample point
        Returns:
        The probability of being below x, given x is standard normal
      • inverseCumulativeDistribution

        public static double inverseCumulativeDistribution​(double p)
        Inverse of the cumulative distribution function of the standard normal distribution using Jakarta commons-math
        Parameters:
        p - The probability
        Returns:
        The quantile