The OpenD Programming Language

mir.stat.distribution.weibull

This module contains algorithms for the Weibull Distribution.

Members

Functions

weibullCCDF
T weibullCCDF(T x, T shape, T scale)

Computes the Weibull complementary cumulative distribution function (CCDF).

weibullCDF
T weibullCDF(T x, T shape, T scale)

Computes the Weibull cumulative distribution function (CDF).

weibullInvCDF
T weibullInvCDF(T p, T shape, T scale)

Computes the Weibull inverse cumulative distribution function (InvCDF).

weibullLPDF
T weibullLPDF(T x, T shape, T scale)

Computes the Weibull log probability density function (LPDF).

weibullPDF
T weibullPDF(T x, T shape, T scale)

Computes the Weibull probability density function (PDF).

Meta

Authors

John Michael Hall