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 the F-distribution evaluated at point The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur. |
|
FDistribution ( int degrees1, int degrees2 ) : System |
Constructs a F-distribution with the given degrees of freedom.
|
|
Fit ( double observations, double weights ) : IDistribution |
Fits the underlying distribution to a given set of observations.
|
|
ProbabilityDensityFunction ( double x ) : double |
Gets the probability density function (pdf) for the F-distribution evaluated at point The Probability Density Function (PDF) describes the probability that a given value |
public DistributionFunction ( double x ) : double | ||
x | double | A single point in the distribution range. |
return | double |
public FDistribution ( int degrees1, int degrees2 ) : System | ||
degrees1 | int | The first degree of freedom. |
degrees2 | int | The second degree of freedom. |
return | System |
public 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 |
public ProbabilityDensityFunction ( double x ) : double | ||
x | double | A single point in the distribution range. |
return | double |