How does Mandelbrot perturbation work?

做~自己de王妃 提交于 2019-12-06 03:05:42

问题


Could someone please explain how perturbation described in this paper accelerates rendering the Mandelbrot set?

I know how to render the Mandelbrot set using the traditional method where many iterations are performed for each pixel, but I don't quite understand what is being described in that paper.

I compute the reference orbit like this:

std::complex<double> Xo(some_x, some_y);
std::complex<double> Xn(0,0);

for (int n = 0; n < maxIterations; ++n) {
  orbit.push_back(Xn);
  Xn = Xn * Xn + Xo;
}

Is that correct? Then how do I use the reference orbit to compute all the other pixels?


回答1:


The border of the Mandelbrot size may have infinite length, but it's still an infinitely small part of the whole plane. For most pixels, the paper shows how you can calculate the local neighbourhood in limited precision.

You're working with a limited precision anyway (double) so it probably doesn't matter for you.



来源:https://stackoverflow.com/questions/25640013/how-does-mandelbrot-perturbation-work

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!