IMSL C# Numerical Library

Cdf.Weibull Method 

Evaluates the Weibull cumulative probability distribution function.

public static double Weibull(
   double x,
   double gamma,
   double alpha
);

Parameters

x
A double specifying the argument at which the function is to be evaluated. It must be non-negative.
gamma
A double specifying the shape parameter.
alpha
A double specifying the scale parameter.

Return Value

A double specifying the probability that a Weibull random variable takes a value less than or equal to x.

See Also

Cdf Class | Imsl.Stat Namespace