Documentation of 'Catalano.Statistics.Distributions.NormalDistribution' Java class
NormalDistribution
Catalano.Statistics.Distributions

Class NormalDistribution

  • All Implemented Interfaces:
    IDistribution


    public class NormalDistribution
    extends java.lang.Object
    implements IDistribution
    Normal (Gaussian) distribution.
    • Constructor Detail

      • NormalDistribution

        public NormalDistribution()
      • NormalDistribution

        public NormalDistribution(double mean)
      • NormalDistribution

        public NormalDistribution(double mean,
                                  double stdDev)
    • Method Detail

      • Mean

        public double Mean()
        Description copied from interface: IDistribution
        Gets the mean for this distribution.
        Specified by:
        Mean in interface IDistribution
        Returns:
        The distribution's mean value.
      • Variance

        public double Variance()
        Description copied from interface: IDistribution
        Gets the variance for this distribution.
        Specified by:
        Variance in interface IDistribution
        Returns:
        The distribution's variance.
      • StandartDeviation

        public double StandartDeviation()
      • Entropy

        public double Entropy()
        Description copied from interface: IDistribution
        Gets the entropy for this distribution.
        Specified by:
        Entropy in interface IDistribution
        Returns:
        The distribution's entropy.
      • DistributionFunction

        public double DistributionFunction(double x)
        Description copied from interface: IDistribution
        Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.
        The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur.
        Specified by:
        DistributionFunction in interface IDistribution
        Parameters:
        x - A single point in the distribution range.
        Returns:
        The probability of x occurring in the current distribution.
      • InverseDistributionFunction

        public double InverseDistributionFunction(double p)
      • ProbabilityDensityFunction

        public double ProbabilityDensityFunction(double x)
        Description copied from interface: IDistribution
        Gets the probability density function (pdf) for this distribution evaluated at point x.
        The Probability Density Function (PDF) describes the probability that a given value x will occur.
        Specified by:
        ProbabilityDensityFunction in interface IDistribution
        Parameters:
        x - A single point in the distribution range.
        Returns:
        The probability of x occurring in the current distribution.
      • LogProbabilityDensityFunction

        public double LogProbabilityDensityFunction(double x)
        Description copied from interface: IDistribution
        Gets the log-probability density function (pdf) for this distribution evaluated at point x.
        The Probability Density Function (PDF) describes the probability that a given value x will occur.
        Specified by:
        LogProbabilityDensityFunction in interface IDistribution
        Parameters:
        x - A single point in the distribution range.
        Returns:
        The probability of x occurring in the current distribution.
      • ZScore

        public double ZScore(double x)
        Gets the Z-Score for a given value.
        Parameters:
        x - Value.
        Returns:
        Z-Score.

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.