Skip to main content
2 votes
2 answers
179 views

I am trying to make a Mandelbrot set display, with the following code: import numpy as np import matplotlib.pyplot as plt plt.rcParams['toolbar'] = 'None' def mandelbrot(c, max_iter): z = 0 ...
Prometheus's user avatar
2 votes
1 answer
100 views

I wrote some code to render the Mandelbrot set with continuous coloring, but the bulbs on the period-2 blub are not colored correctly. regions that should not escape are colored as though the escape ...
Apostla's user avatar
  • 127
1 vote
0 answers
107 views

While implementing the mandelbrot set using java, I found that the rendering time of the program is ridiculously slower than other programs. public class FractalFormula { private Complex[] ...
noen's user avatar
  • 61
0 votes
1 answer
123 views

I try to syncronize threads with condition variables to output mandelbrot but i get wrong mandelbort. The functions output_mandel_line and compute_mandel_line are given and are correct. I made the ...
soa008's user avatar
  • 3
0 votes
0 answers
64 views

I was experimenting with benchmarking a serial version of mandelbrot calulation vs a version using the vector API. Here's the code: public class Main { public static void main(String[] args) { ...
Christos Kalonakis's user avatar
1 vote
3 answers
74 views

I'm calculating Mandelbrot sets and plotting them with matplotlib. I plot them with low quality for it to not take t0o much time processing. But I want to start to plot them with better quality and ...
Tomas Rivera's user avatar
5 votes
5 answers
670 views

Ive written a function which uses turtle to draw a Mandelbrot set, however its very slow (~10's minutes) for any decent resolution, how could I make my code more efficient? import math, turtle screen ...
Kris's user avatar
  • 51
0 votes
0 answers
186 views

I have a list of areas of interest where I would like to zoom into the Mandelbrot set. Unfortunately, I don't know the iteration depths to be used. Question 1: Given (x_min, x_max, y_min, y_max), is ...
TomS's user avatar
  • 290
0 votes
0 answers
69 views

I have the following task: draw a discrete approximation of the Mandelbrot set for the quadratic family on the complex plane. I need to do this with a list-based implementation. I have already created ...
lizsav's user avatar
  • 85
0 votes
1 answer
43 views

I had an idea for optimizing my program, by converting the screen to a texture, and updating the texture when the computer is done calculating, assuring a smooth zoom. I implemented the texture part, ...
iogamesplayer's user avatar
2 votes
1 answer
141 views

I was playing with p5.js trying to recreate the Mandelbrot set. I have created the set itself but I am having a problem with coloring into the right way. I have followed up the pseudocode in the wiki ...
Loyown's user avatar
  • 21
4 votes
1 answer
493 views

I see that this question is quite popular, but I couldn't find one in the context of WebGPU. This is the shader code I wrote for rendering the Mandelbrot set. @vertex fn vert_main(@location(0) pos: ...
Manu Soman's user avatar
1 vote
1 answer
81 views

I have a Mandelbrot set rendering code in c++and I'm using SDL2 to display the image. When I wanted to make my program interactive I reached a problem. By pressing W my code should clear the previous ...
Parsa Eslami's user avatar
0 votes
1 answer
91 views

I tried to use OpenMP in my C program for creating the Mandelbrot set. I use two functions f(z) and d(z) defined in the file. When I use them inside a parallel section direct code: dc = 5*z*z*z*z*dc + ...
Adam's user avatar
  • 1,406
0 votes
1 answer
1k views

I'm trying to code up the Mandelbrot set with CPU multiprocessing for more speed. Right now, I want to render a 32768x32768 image of the set. I have been running into an OSError: [WinError 87] The ...
Aarush Abrol's user avatar

15 30 50 per page
1
2 3 4 5
25