The Mandelbrot set is a fractal in the complex plane.
1
vote
1answer
76 views
Which color gradient is used to color mandelbrot in wikipedia?
At the wikipedia's Mandelbrot page there are really beautiful generated images of the Mandelbrot set.
I also just implemented my own mandelbrot algorithm. Given n is the number of iterations used ...
0
votes
0answers
41 views
Java is not plotting rectangles correctly?
I am making a java application that will plot points in the mandelbrot set. Here are my classes:
public class Mandelbrot {
public static void main(String[] args) {
//initialize frame and ...
1
vote
1answer
103 views
Mandelbrot-algorithm - Background color
I'm writing a Mandelbrot app in C# (and I'm testing with Python). I already have the continous coloring from the set to its borders. My current problem is to set the background color of the ...
2
votes
1answer
52 views
Zoom MandelBrot Set
My calculations seem to be moving the image around more than scaling it. Not quite sure where I'm going wrong. I thought I followed the other post on here correctly but it's not quite right.
int xPos ...
0
votes
1answer
28 views
C X11 Segmentation Fault in MandelBrot Set Application
I can't for the life of me find this seg fault. It keeps occurring on the slave processes as soon as I launch. I have already developed a standard application that works perfectly but have come across ...
0
votes
1answer
89 views
How to fix my Pthreads code about Mandelbrot set?
I have the following Pthreads code about calculating and creating a picture of the Mandelbrot set. My code in C works just fine and it prints the resulting picture nicely. The point is that using the ...
0
votes
1answer
79 views
Determining coordinates for mandelbrot zoom
I got a mandelbrot set I want to zoom in. The mandelbrot is calculated around a center coordinate, mandelbrot size and a zoom-level. The original mandelbrot is centered around
real=-0.6 and im=0.4 ...
0
votes
2answers
111 views
Mandelbrot set won't accelerate using pthread
So, I'm writing a program to compute the Mandelbrot set using pthread.
This is the thread function:
void *partial_compute(void *arg) {
cout << "enter" << flush;
Range *range = ...
1
vote
3answers
119 views
Need correction to my OpenMP Mandelbrot set code
I have the following Mandelbrot set code in OpenMP. My C code works just fine, and the picture that it produces is perfect. But using OpenMP, it compiles and runs correctly, but unfortunately I am not ...
2
votes
1answer
107 views
Improvement to my Mandelbrot set code
I have the following Mandelbrot set code in C. I am doing the calculation and creating a .ppm file for the final fractal image. The point is that my fractal image is upside down, meaning it is rotated ...
2
votes
2answers
72 views
How to divide each pixel calculation of Mandelbrot into different nodes?
My question here is what data structure should I use to distribute the work to each threads and get the calculated value from them. First thing in my mind is fill vector[0] .. vector[63999] (for ...
-1
votes
2answers
199 views
MandelBrot set Using openCL
Trying to use the same code (sort of) as what I have used when running using TBB (threading building blocks) don't have a great deal of experience with openCL but i think most of the main code is ...
0
votes
0answers
90 views
some mandelbrot drawing routine from c to sse2
I want to rewrite such simple routine to SSE2 code, (preferably
in nasm) and I am not totally sure how to do it, two things
not clear (how to express calculations (inner loop and those from
outer loop ...
0
votes
1answer
81 views
Mandelbrot set in java doesn't calculate correctly
I'm still relatively new to Java. I've been working on a program to display the mandelbrot set. My current code generates an image that is close, but not quite the mandelbrot set. This is my ...
0
votes
1answer
82 views
java mandelbrot set moving wrong
so I've been trying to program the mandelbrot set in java, I know the code isn't very optimized but i've just started out doing this.
The idea is that when i click a pixel it will put that pixel in ...
1
vote
2answers
75 views
Mandelbrot very slow to refresh, any way to make it faster?
I've been working recently on a fractal generator, and have been specifically working on the Mandelbrot set. Unfortunately, zooming and moving seems to be very inneficient and takes quite a while to ...
0
votes
1answer
69 views
Smooth Coloring Mandelbrot Set Without Complex Number Library
I've coded a basic Mandelbrot explorer in C#, but I have those horrible bands of color, and it's all greyscale.
I have the equation for smooth coloring:
mu = N + 1 - log (log |Z(N)|) / log 2
Where ...
0
votes
1answer
83 views
Trouble with creating Mandelbrot Set plot in C [closed]
I am trying to create a Mandelbrot set in C code; my output will be a data file, one column of the real parts and one column of the imaginary parts to be plotted in the Argand or complex plane. I have ...
5
votes
2answers
482 views
Zooming in on Mandelbrot set fractal in Java
I am beginning to make a mandelbrot set fractal viewer. I am having a lot of issues when it comes to zooming in on the fractal. If you try to zoom, the viewer will just close in on the center. I have ...
2
votes
2answers
99 views
Low resolution Mandelbrot fractal not… high enough resolution?
Okay, here's a weird one that I'm having problems with (compiled with gcc btw)
Below is source for a Mandelbrot fractal generator for command prompt. I've done this before and I wanted to speed test ...
0
votes
1answer
33 views
How can I center my julia-set?
My mandelbrot set is perfectly centered but when I compute the julia set with slightly the same values the set is a bit off from the center of the image to the right border. I saw this julia set in ...
1
vote
1answer
230 views
What is the relationship between julia set and mandelbrot set?
I wrote a mandelbrot set and I have read about the julia set that it's very similar but what is the relationship exactly? Can I use the mandelbrot formula to draw a julia set? What is the starting ...
0
votes
0answers
85 views
Quadtree and kd-tree splitting and mandelbrot set?
I've read about a quadtree or kd-tree splitting and a mandelbrot set but what when the rectangle before the first split and the frame lies in the mandelbrot set or has the same iteration depth and the ...
-2
votes
1answer
101 views
Why does my bc-math doesn't work? [closed]
In my function I want to use php bc-math to improve the precision. I've tried to replace all operations to no avail. Is this is a float-to-string conversion problem?
function ...
0
votes
1answer
65 views
More then 53-bit floating point precision in php? [duplicate]
Possible Duplicate:
How do I work with high precision decimals in PHP
For a mandelbrot fractal I need more floating-point precision then just 53-bit in php. Is this possible? I've read this ...
2
votes
2answers
259 views
Mandelbrot Set in OpenMP
Can someone help me to improve this code and give me some hints. I was trying to create an OpenMP version of Mandelbrot set on my own. I'm OpenMP beginner and here I'm not getting some speed up, it is ...
2
votes
2answers
126 views
How would you continuously improve the mandelbrot fractal?
I've seen many mandelbrot image generator drawing a low resolution fractal of the mandelbrot and then continuously improve the fractal. Is this a tiling algorithm? Here is an example: ...
0
votes
2answers
90 views
Mandelbrot bad image precision color cycle?
I've created a mandelbrot in php but the mandelbrot is looking a bit strange. How can I improve it?
You can find a live example here: http://www.phpdevpad.de/index.php?id=190.
Update: ...
0
votes
1answer
106 views
How to zoom correctly a mandelbrot?
I'm trying to zoom into my mandelbrot and I read this question: How to perform Simple Zoom into Mandelbrot Set but I have difficult to understand it and it doesn't work. When I calculate the new real ...
2
votes
1answer
192 views
zooming mandelbrot set second time doesnot let it zoom in desired place
I am using opengl/c++ to draw mandelbrot set and trying to zoom into. I am able to zoom for the first time and zooms where i want (by clicking), but when i try to zoom next time it does not zoom where ...
1
vote
2answers
167 views
Mandelbrot zooms but image shifts and gets shrunk
I have been doing Mandelbrot set and trying to zoom but zooming patters gets very troubling. When i zoom it zooms perfectly but the image size is reduced to half of the original. Next time I zoom ...
0
votes
1answer
71 views
bmp segmentation fault in C
I'm making bmp images of fractals (Mandelbrot's and BuddaBrot's) in a square frame and if I make the width 1000 pixels, no problem, but if I increase its width to 2000 I get a segmentation fault on ...
1
vote
1answer
151 views
MandelbrotSet zoom
I am a fairly new to programming in C++, and for the sake of improving I am trying to make a mandelbrot set consol application. I have gotten it to work almost perfectly: The image generates, I can ...
0
votes
2answers
219 views
C# Struct on a Mandelbrot set?
Previously posted a question on a C#.Net Mandelbrot set a while back which was helpfully answered, however I have had to go back to this Mandelbrot set and implement a struct on it's double variables ...
2
votes
2answers
474 views
How do I let multiple Threads paint onto an AWT component?
EDIT: solved, look below for my solution.
first of all, this is my very first question here, so if I make any mistakes, please tell me.
I am trying to write a Mandelbrot Fractal Program in Java, for ...
0
votes
0answers
425 views
Beginning C# Mandelbrot Example - Guidance required [closed]
Currently moved onto C# in my own time and working through a "beginners" book. All is going fine except one basic console window Mandelbrot example which has kind of knocked me off course slightly, ...
0
votes
2answers
87 views
mandelbrot set vertical display
Just wondering how to display a mandelbrot set vertically, like a mandelbrot set as this is positioned horizontally:
I was thinking more like viewing the smaller dimensions from the vertical axis.
1
vote
2answers
135 views
understanding fractals and especially mandelbrot set
I'm really scratching my head here in an effort to understand a quote i read somewhere that says "the more we zoom inside the fractal, the more iteration we will most likely need to perform".
so far, ...
0
votes
2answers
120 views
why mandelbrot's boundary is 2? [closed]
I'm trying to understand why we're iterating through Mandelbrot points until |z| < 4.
why 4? is there somekind of a law? or is it based on statistical measurements?
thanks, igal
1
vote
1answer
131 views
Mandelbrot message queue blocking - C
I'm having problems in using message queues in this program
it is supposed to launch a number of processes that is passed by argument to the program by the command prompt but it only launches and ...
1
vote
1answer
116 views
can't really understand the math behind the mandelbrot set
according the following article : wolfram Mandelbrot set, I'm trying to understand how they exactly managed to calculate the Ln(C)=Zn=R(max) values.
i do understand that Rmax is a constant, equals ...
0
votes
1answer
107 views
Applescript or Automator to save Mandelbrot image from website progressivly
Hello I have recently created a C program for my UNI Computing course that generates a web server at localhost:2020 and sends a bmp file of the Mandelbrot set. If you dont know what that is dont ...
1
vote
1answer
304 views
Normalized Iteration Count does not work. What am I doing wrong?
As you can see from the title, I'm busy programming a little programm for visualizing fractals in Java. Anybody who deals with fractals will come to the point where he/she searches for a solution to ...
1
vote
1answer
245 views
mandelbrot image creation using pthread
i am getting an error: invalid lvalue in assignment.
this is the only error with my program, it looks like a fatal compile time error regards on specially pthread.
i am trying to get the inputs in ...
0
votes
1answer
63 views
sequential mandelbrot image creation
can anyone tell me what is wrong in this code?
i am getting an error in the main function,
when i am calling the 'file_write' method function inside the main function, it
says 'y' is not ...
0
votes
2answers
131 views
how to find the center of the mandelbrot set
is it possible to find the center of the big black spot(the area which with the set?)
I've tried to loop through all points which are in the set, sum their locationד and eventually divided by the num ...
2
votes
2answers
485 views
Having trouble calculating mandelbrot set iterations
So I read up this article: http://www.wikihow.com/Plot-the-Mandelbrot-Set-By-Hand
But I'm stuck at step 7. I'm drawing the set in javascript canvas.
All I need is basicly the C value I guess.
for ...
5
votes
1answer
194 views
Why is turtle lightening pixels?
My program for creating a Mandelbrot set has a bug: whenever the pen changes colors, and every 42nd pixel after that, is lighter. This is, rather coincidentally, a mandelbug (yes, I just learned that ...
0
votes
1answer
104 views
why different Mandelbrot zooming values yields same results?
what gives one the ability to define how deep the zooming process would be?
what i mean is that i tried earlier to run mandelbrot set with 200 iteration and then compared the results with a 1000 ...
0
votes
1answer
115 views
make mandelbrot heightmap stay in one place
i have a small problem where my mandelbrot set is represented as a heightmap matrix, when every cell contains the number of iterations it took a single point to reach infinity or less.
in the end a 3d ...