HyperbolicAsymmetricTSPDF

Hyperbolic asymmetric T (inverse gamma mixture of normals) PDF

struct HyperbolicAsymmetricTSPDF (
T
) if (
isFloatingPoint!T
) {}

Constructors

this
this(T lambda, T beta, T delta, T mu)

Members

Functions

opCall
T opCall(T x)

Examples

auto pdf = HyperbolicAsymmetricTSPDF!double(-1.1, 1.1, 1.1, 1.1);
auto x = pdf(0.1);
import std.conv;
assert(x.isNormal, text(x));

See Also

Meta