Click or drag to resize

WeibullDistributionCDF(Double, Double, Double) Method

Returns the cumulative distribution function (CDF) of the Weibull distribution.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double CDF(
	double x,
	double alpha,
	double lambda
)

Parameters

x  Double
The value at which to evaluate the CDF.
alpha  Double
The shape parameter.
lambda  Double
The scale parameter.

Return Value

Double
The probability that a Weibull-distributed random variable is less than or equal to x.
See Also