Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
DistributionFunction ( ) : double |
Gets the probability density function (pdf) for this distribution evaluated at point The Probability Density Function (PDF) describes the probability that a given value |
|
Fit ( double observations ) : IDistribution |
Fits the underlying distribution to a given set of observations.
|
|
Fit ( double observations, double weights ) : IDistribution |
Fits the underlying distribution to a given set of observations.
|
|
ProbabilityDensityFunction ( ) : double |
Gets the probability density function (pdf) for this distribution evaluated at point The Probability Density Function (PDF) describes the probability that a given value |
Method | Description | |
---|---|---|
MultivariateContinuousDistribution ( int dimension ) : System |
Constructs a new MultivariateDistribution class.
|
Method | Description | |
---|---|---|
IDistribution ( |
Fits the underlying distribution to a given set of observations. Although both double[] and double[][] arrays are supported, providing a double[] for a multivariate distribution or a double[][] for a univariate distribution may have a negative impact in performance. |
|
IDistribution ( |
Fits the underlying distribution to a given set of observations. Although both double[] and double[][] arrays are supported, providing a double[] for a multivariate distribution or a double[][] for a univariate distribution may have a negative impact in performance. |
|
IDistribution ( ) : double |
Gets the probability density function (pdf) for this distribution evaluated at point The Probability Density Function (PDF) describes the probability that a given value |
public abstract DistributionFunction ( ) : double | ||
return | double |
public Fit ( double observations ) : IDistribution | ||
observations | double | /// The array of observations to fit the model against. /// |
return | IDistribution |
public abstract Fit ( double observations, double weights ) : IDistribution | ||
observations | double | /// The array of observations to fit the model against. /// |
weights | double | /// The weight vector containing the weight for each of the samples. /// |
return | IDistribution |
protected MultivariateContinuousDistribution ( int dimension ) : System | ||
dimension | int | |
return | System |
public abstract ProbabilityDensityFunction ( ) : double | ||
return | double |