• Remix
  • Share
  • New Entry

on 24 Oct 2021
  • 37
  • 46
  • 0
  • 0
  • 259
% The Julia set fractal on the MATLAB logo
% By Victoria A. Sablina and Andrey Tarasov
n=999;
A=zeros(n,n,3);
for x=1:n
for y=1:n
h=0;
z=(x/250-2)*i+(y/250-2);
for h=1:255
z=z^2+i*(.6386)+.0533;
if abs(z)>2
break;
end
end
if h>254
w=real(z);
A(x,y,:)=[sin(w);cos(w*10);cos(w*100)];
end
end
end
r=180:819;
L=membrane(1,499);
surf(L,abs(A),'EdgeColor','none');
view(-90,5);
axis off;
Remix Tree