Tagged Questions

The Mandelbrot set is a fractal in the complex plane. Many programmers write their own Mandelbrot generators as a way of sharpening their coding (and, to a lesser extent, maths) skills; there are interesting programming challenges to be solved, and a beautiful visual journey as you explore the depths of the set.

learn more… | top users | synonyms

38
votes
15answers
2k views

Code golf: the Mandelbrot set

Usual rules for the code golf. Here is an implementation in python as an example from PIL import Image im = Image.new("RGB", (300,300)) for i in xrange(300): print "i = ",i for j in ...
13
votes
4answers
4k views

Smooth spectrum for Mandelbrot Set rendering

I'm currently writing a program to generate really enormous (65536x65536 pixels and above) Mandelbrot images, and I'd like to devise a spectrum and coloring scheme that does them justice. The ...
9
votes
9answers
2k views

Lua Challenge: Can you improve the mandelbrot implementation’s performance?

Status: So far the best answer's program executes in 33% of the time of the original program! But there is probably still other ways to optimize it. Lua is currently the fastest scripting language ...
7
votes
2answers
727 views

Mandelbrot Set implementation in Common Lisp

I've been working on an implementation of the Mandelbrot Set in several different languages. I have a working implementation in C++, C#, Java, and Python, but the Common Lisp implementation has some ...
6
votes
2answers
247 views

Why would an image (the Mandelbrot) be skewed and wrap around?

So I just wrote a little snippet to generate the Mandelbrot fractal and imagine my surprise when it came out all ugly and skewed (as you can see at the bottom). I'd appreciate a point in the direction ...
5
votes
3answers
119 views

What's wrong with my Mandelbrot set code?

I'm trying to implement the Mandelbrot set in C, but I'm having a weird problem. My code is as follows: #include <stdio.h> #include <math.h> #include <complex.h> int ...
5
votes
4answers
705 views

quick/fast integer multiplication in ruby?

I am trying to make a quick/efficient Mandelbrot implementation in Ruby. A long long time ago, one way to speed it up was using fixed point integers instead of floats. So i made the following ...
4
votes
4answers
358 views

Some help rendering the Mandelbrot set

I have been given some work to do with the fractal visualisation of the Mandelbrot set. I'm not looking for a complete solution (naturally), I'm asking for help with regard to the orbits of complex ...
4
votes
7answers
863 views

Best Language for a Mandelbrot Zoom? [closed]

I've been pretty interested in coding a Mandelbrot Set zoom and have already done it twice. However there were problems with each one. The first time I thought it'd be cool to do it in javascript... ...
4
votes
2answers
1k views

How to 'zoom' in on a section of the Mandelbrot set?

I have created a Python file to generate a Mandelbrot set image. The original maths code was not mine, so I do not understand it - I only heavily modified it to make it about 250x faster (Threads ...
3
votes
1answer
189 views

File Output using Gforth

As a first project I have been writing a short program to render the Mandelbrot fractal. I have got to the point of trying to output my results to a file ( e.g. .bmp or .ppm ) and got stuck. I have ...
2
votes
2answers
37 views

Coloring mandelbrot set

I have came up to something like this: float MinRe = -2.0f; // real float MaxRe = 1.0f; float MinIm = -1.0f; // imaginary float MaxIm = MinIm + (MaxRe - MinRe) * WindowData.Height / WindowData.Width; ...
2
votes
1answer
86 views

Why does this CUDA code for calculating a Mandelbrot set fail when setting the maximum iteration count higher than 5,500,000?

I'm writing a code synthesizer which converts high-level models into CUDA C code. As test model, I'm using a Mandelbrot generator application which executes the iteration count for each X-Y coordinate ...
2
votes
2answers
75 views

Problem coloring the Mandelbrot set on Android

I have a problem with coloring the Mandelbrot set. This is my onDraw() procedure: @Override protected void onDraw(Canvas canvas) { g = Math.round(60+(iter_count*(2500/16))); iter_count++; ...
2
votes
2answers
231 views

How to make a color progression out of a color palette

My goal with this algorithm I'm working on is to output a color progression out of some provided colors. By color progression I mean creating the "fade" effect between two colors (color A, color B) ...
2
votes
2answers
225 views

Gforth parallel processing

I have written a Forth Mandelbrot fractal plotter, and as much as a technical exercise as anything else I would like to try to speed it up with some parallel processing. For the time being I would be ...
2
votes
1answer
339 views

Fractals explained

For a while now I've been interested in fractals, the math behind them and the visuals they can produce. I just can't really figure out how to map the mathematical formula to a piece of code that ...
2
votes
1answer
229 views

Genetic Programming with the Mandelbrot Set

I'm reading a chapter in this fascinating book about using genetic programming to interactively evolve images. Most of the function set is comprised of simple arithmetic and trig functions (which ...
2
votes
3answers
291 views

Help with rendering the Mandelbrot set in Java

I wrote an implementation of the Mandelbrot set in Java using a JComponent but I'm getting strange results when I render it. Besides that everything compiles right. I'm just not for sure what I'm ...
2
votes
2answers
238 views

Big float for shader-based mandelbrot explorer

I've managed to create a simple mandelbrot explorer using Open Gl, and the CGFX SDK provided by NVidia. It works well, but is currently float based, and therefore doesn't have much "depth" -- As the ...
2
votes
1answer
543 views

Clojure/Java Mandelbrot Fractal drawing

I am trying to port this algorithm to clojure. My code is (defn calc-iterations [x y] (let [c (struct complex x y)] (loop [z (struct complex 0 0) iterations 0] (if (and ...
1
vote
1answer
78 views

OpenGL height-map painting using CUDA VBO

I've asked several questions regarding VBO previously here and from the comments i had received i decided that a new approach must be taken. To put it simply - I'm trying to draw the Mandelbrot set ...
1
vote
1answer
218 views

Smooth Coloring Algorithm for the Mandelbrot set on Delphi

I have problems using the smoot coloring algorithm. I just don't get them implemented in my Code. This is the main code which causes an error after some calculated pixel rows: ...
1
vote
1answer
123 views

How do I zoom into the mandelbrot set?

I can generate a 400x400 image of the Mandelbrot set from minReal to maxReal and from minImaginary to maxImaginary. So, makeMandel(minReal, maxReal, minImaginary, maxImaginary); I need to modify it ...
1
vote
3answers
97 views

Code help to determine if point is in Mandelbrot set (check my solution)

Here is my function that tests two points x and y if they're in the mandelbrot set or not after MAX_ITERATION 255. It should return 0 if not, 1 if it is. int isMandelbrot (int x, int y) { int ...
1
vote
2answers
50 views

a function which determines if a given point(x, y) is in the mandelbrot set or not

So given any point (a + ib), the function will return 1 if it is in the mandelbrot set or 0 if not for n amount of iterations. I'm having difficulties trying to code this function, especially with ...
1
vote
4answers
153 views

Building and animating fractals

Can anyone recommend any software/books required to learn and build fractal patterns? I want to also be able to animate the fractal patterns too. Like something off of winamp.
1
vote
2answers
251 views

Parallelism on two duo-core processor system

I wrote a Java program that draw the Mandelbrot image. To make it interesting, I divided the for loop that calculates the color of each pixel into 2 halves; each half will be executed as a thread ...
1
vote
2answers
356 views

how to zoom mandelbrot set

I have successfully implemented the mandelbrot set as described in the wikipedia article, but I do not know how to zoom into a specific section. This is the code I am using: ...
0
votes
1answer
11 views

how to translate mandelbrot's size to its zooming value

my mandelbrot set is defined in a XY world as a rectangular shape, meaning at any given time i know its most bottom left and upper right corners. is there any way to know what is the total zooming ...
0
votes
2answers
113 views

programming for multiple cores / Mandelbrot Set / c++

I have a question concerning the Concurrency::parallel_for algorithm of "ppl.h" header. This example is from Ivor Horton's book - "Beginning Visual C++ 2010". Link to complete .cpp file: ...
0
votes
1answer
76 views

How to perform Simple Zoom into Mandelbrot Set

I have a general question with the Mandelbrot set "zoom" view and the math pertaining to it. I have implemented the mandelbrot set for the 256 X 256 window size with values // ImageWidth = ...
0
votes
1answer
113 views

Mandelbrot zooming difficulty

I'm not sure to which area this question is related , but I will give it a go. I'm trying to calculate the Mandelbrot set. The big difference is that my output is a 3D model. The set's calculation is ...
0
votes
1answer
68 views

Mandelbrot with zoom implementation in C

I am trying to implement a zoom in/out function in my mandelbrot code.. I partially implemented zoom function but when zoomed in, its getting blurry and cant able to see the mandelbrot set anymore.. ...
0
votes
1answer
104 views

Problem with testing Linux cluster using the Mandelbrot set

I have a six-node cluster running Ubuntu 11.04 and MPICH2 1.4. I'm trying to test the graphics using the Mandelbrot set. The pmandel executable that is supposedly found in one of the MPICH2 ...
0
votes
1answer
90 views

Color gradient for Mandelbrot Android application doesn't work

I'm trying to to program the Mandelbrot set for Android. I try to draw it on a Canvas. It works, but I want to have a color gradient. This is my code: package de.turbofractal; import ...
0
votes
1answer
222 views

how to do zoom in my code (mandelbrot)

i have the following code and i wanted to know how may i insert zoom into my code.(i read some similar subjects but i can't figure). GLsizei width = 600; GLsizei height = 600; int max = 500; double ...
0
votes
4answers
154 views

For all the creative people out there: coloring mandelbrot set… need ideas

Given max amount of iterations = 1000 give me some ideas on how to color (red, green, blue) it. All I can come up right now are lame 2 color gradients :( Is it actually possible to come up with ...
0
votes
2answers
258 views

Mandelbrot set on Java - Is there something wrong with my algorithm?

I was asked to display the Mandelbrot set on Java but I have encountered a problem. My teacher and I both are stumped to why this doesn't run correctly. I reckon it has something to do with the ...