public struct GammaSCDF(T)
if(isFloatingPoint!T)

Gamma CDF

Example

auto cdf = GammaSCDF!double(3, 2);
auto x = cdf(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);
}

Parameters

shape

gamma shape parameter

scale

gamma scale parameter

public T opCall(T x) const

Functions

this

Constructor

opCallconst