Modules§
Enums§
Functions§
- aberth_
ehrlich - Find all roots using Aberth Ehrlich method.
- deflate
- Combinator that makes an all-roots root finder from a single-root root finder.
- halley
- Find a single root
- halley_
deflate - Find all roots of a polynomial using a modified Halley’s method.
- halley_
parallel - Use Halley’s method in parallel for multiple initial guesses.
- initial_
guess_ smallest - Guess close to the root with the smallest magnitude (Madsen 1973)
- initial_
guesses_ circle - Equidistant points around a circle.
- naive
- Find a single root using naive Newton’s method
- naive_
deflate - Find all roots of a polynomial using a naive Newton-Raphson approach.
- naive_
parallel - Use Naive Newton’s method in parallel for multiple initial guesses.
- newton
- Find a single root using Newton’s method
- newton_
deflate - Modified Newton’s method, originally conceived by Kaj Madsen 1973.
- newton_
parallel - Use Newton’s method in parallel for multiple initial guesses.
- parallel
- Run multiple single-root root finders in parallel.