The OpenD Programming Language

mir.stat.distribution.logistic

This module contains algorithms for the Logistic Distribution.

Members

Functions

logisticCCDF
T logisticCCDF(T x)

Computes the Logistic complementary cumulative distribution function (CCDF).

logisticCCDF
T logisticCCDF(T x, T location, T scale)

Ditto, with location and scale parameters (by standardizing x).

logisticCDF
T logisticCDF(T x)

Computes the Logistic cumulative distribution function (CDF).

logisticCDF
T logisticCDF(T x, T location, T scale)

Ditto, with location and scale parameters (by standardizing x).

logisticInvCDF
T logisticInvCDF(T p)

Computes the Logistic inverse cumulative distribution function (InvCDF).

logisticInvCDF
T logisticInvCDF(T p, T location, T scale)

Ditto, with location and scale parameters (by standardizing x).

logisticLPDF
T logisticLPDF(T x)

Computes the Logistic log probability density function (LPDF).

logisticLPDF
T logisticLPDF(T x, T location, T scale)

Ditto, with location and scale parameters (by standardizing x).

logisticPDF
T logisticPDF(T x)

Computes the Logistic probability density function (PDF).

logisticPDF
T logisticPDF(T x, T location, T scale)

Ditto, with location and scale parameters (by standardizing x).

Meta

Authors

John Michael Hall