Find the function input such that definite integral is desired value.
Given a function, integrate from an (optional) start point until the integral reached a desired value, and return the end point of the integration.
Parameters: | func : callable
value : float
start : float (optional)
stop : float (optional)
maxit : integer
|
---|---|
Returns: | out : float
**Note: Assumes func is everywhere positive, otherwise solution may** :
|