The OpenD Programming Language

mir.stat.distribution.laplace

This module contains algorithms for the Laplace Distribution.

Members

Functions

laplaceCCDF
T laplaceCCDF(T x)

Computes the Laplace complementary cumulative distribution function (CCDF).

laplaceCCDF
T laplaceCCDF(T x, T location, T scale)

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

laplaceCDF
T laplaceCDF(T x)

Computes the Laplace cumulative distribution function (CDF).

laplaceCDF
T laplaceCDF(T x, T location, T scale)

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

laplaceInvCDF
T laplaceInvCDF(T p)

Computes the Laplace inverse cumulative distribution function (InvCDF).

laplaceInvCDF
T laplaceInvCDF(T p, T location, T scale)

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

laplaceLPDF
T laplaceLPDF(T x)

Computes the Laplace log probability density function (LPDF).

laplaceLPDF
T laplaceLPDF(T x, T location, T scale)

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

laplacePDF
T laplacePDF(T x)

Computes the Laplace probability density function (PDF).

laplacePDF
T laplacePDF(T x, T location, T scale)

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

Meta

Authors

John Michael Hall