- /
-
Diwali Fireworks
on 26 Oct 2022
- 9
- 16
- 0
- 0
- 273
r=1500;
f=3;
t=5;
Z = 0;
[x,y]=meshgrid(linspace(0.5,1,r),linspace(-.2,.2,r).*1i);
M=x+y;
%iterate
for p=1:f
Z=tan(Z.^t+M);
end
imshow(real(Z'),'C',copper)
%get big picture
set(gcf,'Position',[0,0,3000,3000])
annotation(gcf,'textbox',[0.45 0.5 0.2 0.05],'Color',[0.9 0.7 0.1],...
'String','Happy Diwali','FontSize',40);