YRoots.jl
A fast-working package for finding the roots of multivariate systems of equations.
How YRoots Works
YRoots harnesses the properties of Chebyshev polynomial approximation to quickly and precisely find and return the roots of various systems of functions.
Given a list of smooth, continuous functions and a compact search interval, YRoots generates an accurate approximation for each function on the interval and recursively uses numerical methods to zero in on any roots contained in the interval.
Getting Started
using YRoots
# Roots of x + y = 0.3 and x - y = 0.1 on [-1,1]^2
roots = solve([(x, y) -> x + y - 0.3,
(x, y) -> x - y - 0.1], [-1.0, -1.0], [1.0, 1.0])See solve for the full parameter reference, and Polynomials for the MultiCheb and MultiPower helper types.