Mandelbrot set: Difference between revisions

m
→‎{{header|Julia}}: Setting the language tag to Julia.
m (→‎Normalized Counting, Distance Estimation, Mercator Maps and Perturbation Theory: Minor improvements to calculation speed and image quality.)
m (→‎{{header|Julia}}: Setting the language tag to Julia.)
Line 6,426:
 
Generates an ASCII representation:
<syntaxhighlight lang="pythonjulia">function mandelbrot(a)
z = 0
for i=1:50
Line 6,442:
 
This generates a PNG image file:
<syntaxhighlight lang="pythonjulia">using Images
 
@inline function hsv2rgb(h, s, v)
305

edits