public struct InverseGammaSQuantile(T)
if(isFloatingPoint!T)
Quantile function of the inverse-gamma distribution
Example
auto qf = InverseGammaSQuantile!double(3, 2);
auto x = qf(0.1);
assert(isNormal(x));
public this(
T shape,
T scale)
Constructor
Contracts
in
{
assert (shape.isNormal);
assert (shape > 0);
assert (scale.isNormal);
assert (scale > 0);
}
public T opCall(T x) const
Contracts
in
{
assert (x >= 0);
assert (x <= 1);
}