ImplicitPlots.jl
ImplicitPlots.jl copied to clipboard
Question / Feature Request: Vectorized/Tupletized call to ImplicitPlots
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?