ProbabilityDistribution Class

Represents a probability distribution.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public abstract class ProbabilityDistribution : RandomDevice
Inheritance
Object    RandomDevice    ProbabilityDistribution
Derived
More

Constructors

ProbabilityDistributionInitializes a new instance of the ProbabilityDistribution class

Properties

CanInvertCdf Gets a value indicating whether this instance can invert its cumulative distribution function.
RandomNumberGenerator Gets or sets the basic random generator for this instance.
(Inherited from RandomDevice)

Methods

Cdf(Double) Computes the cumulative distribution function of this instance at the specified argument.
Cdf(DoubleMatrix) Computes the cumulative distribution function of this instance at the specified arguments.
Cdf(ReadOnlyDoubleMatrix) Computes the cumulative distribution function of this instance at the specified arguments.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
InverseCdf(Double) Computes the inverse of the cumulative distribution function of this instance at the specified argument.
InverseCdf(DoubleMatrix) Computes the inverse of the cumulative distribution function of this instance at the specified arguments.
InverseCdf(ReadOnlyDoubleMatrix) Computes the inverse of the cumulative distribution function of this instance at the specified arguments.
Mean Computes the mean of this instance.
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
OnSample Called when drawing a sample from this instance having the given size and returns it in a given destination array.
Pdf(Double) Computes the probability density function of this instance at the specified argument.
Pdf(DoubleMatrix) Computes the probability density function of this instance at the specified arguments.
Pdf(ReadOnlyDoubleMatrix) Computes the probability density function of this instance at the specified arguments.
Sample Draws a sample point from this instance.
Sample(Int32) Draws a sample from this instance having the specified size and returns it as a matrix.
Sample(Int32, Double, Int32) Draws a sample from this instance having the specified size and returns it in a destination array.
StandardDeviation Computes the standard deviation of this instance.
ToStringReturns a string that represents the current object.
(Inherited from Object)
Variance Computes the variance of this instance.

See Also