GeneralizedGammaSQuantile

Quantile function of the generalized gamma distribution

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

Constructors

this
this(T shape, T power, T scale)

Constructor

Members

Functions

opCall
T opCall(T x)

Examples

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

Meta