
Last chance! 50% off unlimited learning
Sale ends in
This function is used to get the inverse of a monotonic function on (0,1), depending on parameters, and using the bisection method
invfunc(q, func, th, lb = 1e-12, ub = 1 - 1e-12, tol = 1e-08, nbreak = 40)
Inverse values
Function value (can be a vector if func() supports a vector argument)
Function of one argument to be inverted
Function parameters
Lower bound for the possible values
Upper bound for the possible values
Tolerance for the inversion
Maximum number of iterations (default is 40)
Pavel Krupskii