ImplicitEquations.jl

Julia package to facilitate graphing of implicit equations and inequalities
Popularity
34 Stars
Updated Last
11 Months Ago
Started In
December 2014

Stable Dev Build Status codecov

ImplicitEquations

In a paper, Tupper presents a method for graphing two-dimensional implicit equations and inequalities. This package gives an implementation of the paper's basic algorithms to allow the Julia user to naturally represent and easily render graphs of implicit functions and equations.

We give one example, others may be viewed in the documentation.

The Devils curve is graphed over the default region as follows:

using Plots, ImplicitEquations

a,b = -1,2
f(x,y) = y^4 - x^4 + a*y^2 + b*x^2

plot(f ⩵ 0)  # \Equal[tab] or Eq(f, 0)

DevilsCurve

Used By Packages

No packages found.