You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plot! call uses (-5,5) x (-5,5) and not the (-7,5) x (-5,5)
The current recipe uses xlims = get(plotattributes, :xlims, (-5,5)). It seems to be suggested that xlims --> (-5,5) should work (but it doesnt). The use of xlims = get!(plotattributes, :xlims, (-5,5)) doesn't see the initial xlims specification.
The text was updated successfully, but these errors were encountered:
In https://discourse.julialang.org/t/implicitequations-plot-return-empty-plot/94117/5 the issue of xlims and ylims arises:
The
plot!
call uses (-5,5) x (-5,5) and not the (-7,5) x (-5,5)The current recipe uses
xlims = get(plotattributes, :xlims, (-5,5))
. It seems to be suggested thatxlims --> (-5,5)
should work (but it doesnt). The use ofxlims = get!(plotattributes, :xlims, (-5,5))
doesn't see the initial xlims specification.The text was updated successfully, but these errors were encountered: