Roots.jl
Roots.jl copied to clipboard
Root finding functions for Julia
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
This pull request changes the compat entry for the `Setfield` package from `0.7, 0.8` to `0.7, 0.8, 1`. This keeps the compat entries for earlier versions. Note: I have not...
Hi! The changes in Roots 2 broke root finding with non-standard number types in Bijectors: https://github.com/TuringLang/Bijectors.jl/pull/219 The reason seems to be that in Roots < 2 `find_zero(f, (a, b))` was...
In the real TOMS748, the first call to newton_quadratic is always with k=2, in the julia code, it can be k=3. It probably does not matter too much, but as...
After writing up #275, I am left with a strong feeling that the internal struct `Tracks` has a bad name. Why on _earth_ would a type have a name with...
It would be good to have a clear idea of the intended use cases for this package. The solvers are great and fast for large problems run from the REPL....
have we had any leads on how to do it for a multivariate setting?
So first of all, thank you for Roots.jl! This is a feature request to have some way through the public and documented API for the primary functions, e.g., find_zero to...
I needed to do this and had to dig into the code to find out, so thought it might be worth adding to the docs page. If you think this...
https://github.com/JuliaMath/Roots.jl#convergence >The Bisection and Roots.A42 methods are guaranteed to converge even if the tolerances are set to zero, so these are the defaults. Non-zero values for xatol and xrtol can...