SkillAgentSearch skills...

ImplicitPlots.jl

Julia package for the plotting of plane curves and surfaces

Install / Use

/learn @saschatimme/ImplicitPlots.jl
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ImplicitPlots.jl

Plot plane curves defined by an implicit function f(x,y)=0.

Plane curves

using ImplicitPlots, Plots

f(x,y) = (x^4 + y^4 - 1) * (x^2 + y^2 - 2) + x^5 * y
implicit_plot(f; xlims=(-2,2), ylims=(-2,2))

<img src="images/example_curve.png" style="max-width:100%" width="400px"></img>

Polynomials following the MultivariatePolynomials.jl interface, e.g., DynamicPolynomials.jl are also supported.

using DynamicPolynomials, Plots
@polyvar x y
f2 = (x^4 + y^4 - 1) * (x^2 + y^2 - 2) + x^5 * y
implicit_plot(f2; xlims=(-2,2), ylims=(-2,2))
View on GitHub
GitHub Stars28
CategoryDevelopment
Updated5mo ago
Forks2

Languages

Julia

Security Score

87/100

Audited on Oct 28, 2025

No findings