ImplicitPlots.jl icon indicating copy to clipboard operation
ImplicitPlots.jl copied to clipboard

Question / Feature Request: Vectorized/Tupletized call to ImplicitPlots

Open ptoche opened this issue 4 years ago • 0 comments

Awesome package!

Is there a way to call several functions in a Tuplet or Vector without a loop?

using ImplicitPlots, Plots
v = [(x,y) -> (x+3)*(y^3-7)+18, (x,y) -> sin(y*exp(x)-1)]
p = plot()
for (i, f) in enumerate(v)
    implicit_plot!(f; xlims = (-1, 3), ylims = (-1, 2))
end
p

Something simple like: implicit_plot.(v; xlims = (-1, 3), ylims = (-1, 2)), with the broadcasting dot?

ptoche avatar May 11 '21 03:05 ptoche