InverseGammaSQuantile

Quantile function of the inverse-gamma distribution

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

Constructors

this
this(T shape, T scale)

Constructor

Members

Functions

opCall
T opCall(T x)

Examples

auto qf = InverseGammaSQuantile!double(3, 2);
auto x = qf(0.1);
assert(isNormal(x));

Meta