inverse Continuous CDFVia Bisection
Computes the inverse CDF by using the bisection method ll,ul must contain the desired value. The ll, ul are defined on the domain of the CDF, i.e. the x values
Return
the inverse of the CDF evaluated at p
Parameters
a reference to the cdf
must be in 0,1
lower limit of search range, must be < ul
upper limit of search range, must be > ll
an initial starting point that must be in ll,ul. Default value initial search point is (ll+ul)/2.0
Computes the inverse CDF by using the bisection method. The interval ll,ul must contain the desired value ll, ul are defined on the domain of the CDF, i.e. the x values.
Return
the inverse of the CDF evaluated at p
Parameters
a reference to the cdf
must be in 0,1
an initial starting point that must be in the interval. Default is the midpoint of the interval.