From 015df2ef662f45fdf63b3c5fbc35c1fd3b82cc5f Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 22 Aug 2023 01:31:48 +1000 Subject: [PATCH] Improve resolution of Mandelbrot example image (#3170) Improve resolution --- docs/examples/plotting_functions/heatmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/plotting_functions/heatmap.md b/docs/examples/plotting_functions/heatmap.md index 3192fc87548..fb6e8325774 100644 --- a/docs/examples/plotting_functions/heatmap.md +++ b/docs/examples/plotting_functions/heatmap.md @@ -34,7 +34,7 @@ function mandelbrot(x, y) for i in 1:30.0; abs(z) > 2 && return i; z = z^2 + c; end; 0 end -heatmap(-2:0.1:1, -1.1:0.1:1.1, mandelbrot, +heatmap(-2:0.001:1, -1.1:0.001:1.1, mandelbrot, colormap = Reverse(:deep)) ``` \end{examplefigure}