• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 52
  • 57
  • 3
  • 0
  • 260
% Based on Mandelbrot Chapter of Cleve Moler "Experiments in MATLAB"
% By Victoria A. Sablina
a=-1.74975918013036646;
b=-3.68513796e-10;
w=5.0e-8;
s=1.0e-10;
x=a-w:s:a+w;
y=x'-a+b;
n=numel(x);
e=ones(n,1);
z0=x(e,:)+i*y(:,e);
z=zeros(n);
c=z;
d=2048;
for k=1:d
z=z.^2+z0;
c(abs(z)<2)=k;
end
image(c');
axis image off;
colormap(flipud(jet(d)));
title('MATLAB Central 20^{th} anniversary!!!');
Remix Tree
Load full remix tree