Mandelbrot set: Difference between revisions

m
m (→‎Normalized Iteration Count, Distance Estimation and Mercator Maps: Explanation of the missing zoom images added.)
Line 5,281:
 
===Normalized Iteration Count, Distance Estimation and Mercator Maps===
This is just a translation of the corresponding Python section, but the scatter plot and therefore the zoom images are missing. GR cannot create them in good quality, and if you choose PyPlot as the backend, you can also run the Python version directly (thanks to NumPy it is significantly faster than Julia).
<lang julia>using Plots
gr(aspect_ratio=:equal, legend=false, dpi=250)
Line 5,321:
savefig("Mandelbrot_set_4.png")</lang>
 
A small change in the code above creates Mercator maps of the Mandelbrot set (the zoom images are missing, however).
<lang julia>using Plots
gr(aspect_ratio=:equal, legend=false, dpi=250)
305

edits