- /
-
Baby Yoda Doing MATLAB contest
on 19 Oct 2022
- 6
- 37
- 0
- 0
- 174
%presets
r = 1500;
f = 17;
Z = 0;
x = linspace(0.7,1.08,r);
y = linspace(-.2,.2,r);
M = x + 1i .* y.';
%iterate
for p=1:f
Z=sinpi(Z.^3+M);
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])