It's defined in this Cython source file (for module probability_distribution
) as being mediated by the method cum_distribution_function_inv
of an instance of class RealDistribution
when its self.distribution_type==beta
. So you should import the module, instantiate the class, and then call the method -- e.g.
from gsl import probability_distribution
thebeta = probability_distribution.RealDistribution(type='beta',
parameters=[alpha, beta])
print thebeta.cum_distribution_function_inv(0.1)
I don't have a GSL installation at hand to test this code (so there might be some minor detail wrong here!) but I do hope this points you in the right direction.