Weibull Class |
public class Weibull : IContinuousDistribution, IUnivariateDistribution, IDistribution
The Weibull type exposes the following members.
| Name | Description | |
|---|---|---|
| Weibull(Double, Double) | Initializes a new instance of the Weibull class. | |
| Weibull(Double, Double, Random) | Initializes a new instance of the Weibull class. |
| Name | Description | |
|---|---|---|
| Entropy | Gets the entropy of the Weibull distribution. | |
| Maximum | Gets the maximum of the Weibull distribution. | |
| Mean | Gets the mean of the Weibull distribution. | |
| Median | Gets the median of the Weibull distribution. | |
| Minimum | Gets the minimum of the Weibull distribution. | |
| Mode | Gets the mode of the Weibull distribution. | |
| RandomSource | Gets or sets the random number generator which is used to draw random samples. | |
| Scale | Gets the scale (λ) of the Weibull distribution. Range: λ > 0. | |
| Shape | Gets the shape (k) of the Weibull distribution. Range: k > 0. | |
| Skewness | Gets the skewness of the Weibull distribution. | |
| StdDev | Gets the standard deviation of the Weibull distribution. | |
| Variance | Gets the variance of the Weibull distribution. |
| Name | Description | |
|---|---|---|
| CDF | Computes the cumulative distribution (CDF) of the distribution at x, i.e. P(X ≤ x). | |
| CumulativeDistribution | Computes the cumulative distribution (CDF) of the distribution at x, i.e. P(X ≤ x). | |
| Density | Computes the probability density of the distribution (PDF) at x, i.e. ∂P(X ≤ x)/∂x. | |
| DensityLn | Computes the log probability density of the distribution (lnPDF) at x, i.e. ln(∂P(X ≤ x)/∂x). | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Estimate | Implemented according to: Parameter estimation of the Weibull probability distribution, 1994, Hongzhu Qiao, Chris P. Tsokos | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| IsValidParameterSet | Tests whether the provided values are valid parameters for this distribution. | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| Computes the probability density of the distribution (PDF) at x, i.e. ∂P(X ≤ x)/∂x. | ||
| PDFLn | Computes the log probability density of the distribution (lnPDF) at x, i.e. ln(∂P(X ≤ x)/∂x). | |
| Sample | Generates a sample from the Weibull distribution. | |
| Sample(Double, Double) | Generates a sample from the Weibull distribution. | |
| Sample(Random, Double, Double) | Generates a sample from the Weibull distribution. | |
| Samples | Generates a sequence of samples from the Weibull distribution. | |
| Samples(Double) | Fills an array with samples generated from the distribution. | |
| Samples(Double, Double) | Generates a sequence of samples from the Weibull distribution. | |
| Samples(Double, Double, Double) | Fills an array with samples generated from the distribution. | |
| Samples(Random, Double, Double) | Generates a sequence of samples from the Weibull distribution. | |
| Samples(Random, Double, Double, Double) | Fills an array with samples generated from the distribution. | |
| ToString |
A string representation of the distribution.
(Overrides ObjectToString) |