Click or drag to resize

InverseGaussian Class

[Missing <summary> documentation for "T:Altaxo.Calc.Distributions.InverseGaussian"]

Inheritance Hierarchy
SystemObject
  Altaxo.Calc.DistributionsInverseGaussian

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class InverseGaussian : IContinuousDistribution, 
	IUnivariateDistribution, IDistribution

The InverseGaussian type exposes the following members.

Constructors
 NameDescription
Public methodInverseGaussian Initializes a new instance of the InverseGaussian class.
Top
Properties
 NameDescription
Public propertyEntropy Gets the entropy of the Inverse Gaussian distribution (currently not supported).
Public propertyKurtosis Gets the kurtosis of the Inverse Gaussian distribution.
Public propertyLambda Gets the shape (λ) of the distribution. Range: λ > 0.
Public propertyMaximum Gets the maximum of the Inverse Gaussian distribution.
Public propertyMean Gets the mean of the Inverse Gaussian distribution.
Public propertyMedian Gets the median of the Inverse Gaussian distribution. No closed form analytical expression exists, so this value is approximated numerically and can throw an exception.
Public propertyMinimum Gets the minimum of the Inverse Gaussian distribution.
Public propertyMode Gets the mode of the Inverse Gaussian distribution.
Public propertyMu Gets the mean (μ) of the distribution. Range: μ > 0.
Public propertyRandomSource Gets the random number generator which is used to draw random samples.
Public propertySkewness Gets the skewness of the Inverse Gaussian distribution.
Public propertyStdDev Gets the standard deviation of the Inverse Gaussian distribution.
Public propertyVariance Gets the variance of the Inverse Gaussian distribution.
Top
Methods
 NameDescription
Public methodStatic memberCDF Computes the cumulative distribution (CDF) of the distribution at x, i.e. P(X ≤ x).
Public methodCumulativeDistribution Computes the cumulative distribution (CDF) of the distribution at x, i.e. P(X ≤ x).
Public methodDensity Computes the probability density of the distribution (PDF) at x, i.e. ∂P(X ≤ x)/∂x.
Public methodDensityLn Computes the log probability density of the distribution (lnPDF) at x, i.e. ln(∂P(X ≤ x)/∂x).
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodStatic memberEstimate Estimates the Inverse Gaussian parameters from sample data with maximum-likelihood.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodInvCDF(Double) Computes the inverse cumulative distribution (CDF) of the distribution at p, i.e. solving for P(X ≤ x) = p.
Public methodStatic memberInvCDF(Double, Double, Double) Computes the inverse cumulative distribution (CDF) of the distribution at p, i.e. solving for P(X ≤ x) = p.
Public methodStatic memberIsValidParameterSet Tests whether the provided values are valid parameters for this distribution.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodStatic memberPDF Computes the probability density of the distribution (PDF) at x, i.e. ∂P(X ≤ x)/∂x.
Public methodStatic memberPDFLn Computes the log probability density of the distribution (lnPDF) at x, i.e. ln(∂P(X ≤ x)/∂x).
Public methodSample Generates a sample from the inverse Gaussian distribution.
Public methodStatic memberSample(Random, Double, Double) Generates a sample from the inverse Gaussian distribution.
Public methodSamples Generates a sequence of samples from the inverse Gaussian distribution.
Public methodSamples(Double) Fills an array with samples generated from the distribution.
Public methodStatic memberSamples(Random, Double, Double) Generates a sequence of samples from the Burr distribution.
Public methodStatic memberSamples(Random, Double, Double, Double) Fills an array with samples generated from the distribution.
Public methodToString A string representation of the distribution.
(Overrides ObjectToString)
Top
See Also