Reference

Contents

Index

TulipaProfileFitting.find_search_intervalMethod
(a, b) = find_search_interval(f)

Returns an interval such that $f(a) × f(b) ≤ 0$. It could be 0 for either endpoint, but it is not positive, ensuring that there is a root in [a, b].

source
TulipaProfileFitting.find_solutionMethod
x = find_solution(P, μ)

Finds a points such that $S(x) = μ$, if possible, where

\[S(x) = \frac{1}{|P|} \sum_{p ∈ P:\ p > 0} p^x.\]

If not possible, return either 0 or 1000, depending on what is most appropriate.

source