User Portlet User Portlet

Discussions
The Fibonacci spiral: an approximation of the generated golden spiral drawing circular arcs connecting the opposite corners of squares adjusted to the values ​​of the succession. ![enter image description here][1] Mathematica code: ...
Inspired by [this][1], I did these two animations. Although there is already a built-in function `KochCurve`, but it can't do it directly and somewhat slow. ![enter image description here][2] ![enter image description here][3] ![enter image...
Nice post! In my experience, many built-in fractal functions is not very efficient. Compare with custom compilation function maybe better. The fastest implementation should be using CUDALink or OpenCLLink. Clear[mandelbrot]; mandelbrot =...
Chinese article is published at https://mp.weixin.qq.com/s/yH2UpAWKIlywIhhw7tNzbQ The **exhaustive method** can solve many problems. When the data size becomes larger, some optimization techniques are needed. Pruning is a common method....