C# Class Accord.Statistics.Distributions.Univariate.GompertzDistribution

Gompertz distribution.

The Gompertz distribution is a continuous probability distribution. The Gompertz distribution is often applied to describe the distribution of adult lifespans by demographers and actuaries. Related fields of science such as biology and gerontology also considered the Gompertz distribution for the analysis of survival. More recently, computer scientists have also started to model the failure rates of computer codes by the Gompertz distribution. In marketing science, it has been used as an individual-level model of customer lifetime.

References: Wikipedia, The Free Encyclopedia. Gompertz distribution. Available on: http://en.wikipedia.org/wiki/Gompertz_distribution

Inheritance: UnivariateContinuousDistribution
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Clone ( ) : object

Creates a new object that is a copy of the current instance.

DistributionFunction ( double x ) : double

Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.

GompertzDistribution ( [ eta, [ b ) : System

Initializes a new instance of the GompertzDistribution class.

LogProbabilityDensityFunction ( double x ) : double

Gets the log-probability density function (pdf) for this distribution evaluated at point x.

ProbabilityDensityFunction ( double x ) : double

Gets the probability density function (pdf) for this distribution evaluated at point x.

ToString ( string format, IFormatProvider formatProvider ) : string

Returns a System.String that represents this instance.

Method Details

Clone() public method

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
return object

DistributionFunction() public method

Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.
public DistributionFunction ( double x ) : double
x double A single point in the distribution range.
return double

GompertzDistribution() public method

Initializes a new instance of the GompertzDistribution class.
public GompertzDistribution ( [ eta, [ b ) : System
eta [ The shape parameter η.
b [ The scale parameter b.
return System

LogProbabilityDensityFunction() public method

Gets the log-probability density function (pdf) for this distribution evaluated at point x.
public LogProbabilityDensityFunction ( double x ) : double
x double A single point in the distribution range.
return double

ProbabilityDensityFunction() public method

Gets the probability density function (pdf) for this distribution evaluated at point x.
public ProbabilityDensityFunction ( double x ) : double
x double A single point in the distribution range.
return double

ToString() public method

Returns a System.String that represents this instance.
public ToString ( string format, IFormatProvider formatProvider ) : string
format string
formatProvider IFormatProvider
return string