GammaSCDF

Gamma CDF

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

Constructors

this
this(T shape, T scale)

Constructor

Members

Functions

opCall
T opCall(T x)

Examples

auto cdf = GammaSCDF!double(3, 2);
auto x = cdf(0.1);
assert(isNormal(x));

Meta