- /
-
Rosette 2156
on 18 Oct 2021
- 6
- 11
- 0
- 0
- 277
[X,Y]=meshgrid(-4:5e-3:4);
a=0.1+0.1i;
fz=(abs((X+i*Y).^5+(X-i*Y).^5+a*((X+i*Y).^6.*(X-i*Y)+(X+i*Y).*(X-i*Y).^6)+a*((X+i*Y).^4./(X-i*Y).^6+(X-i*Y).^4./(X+i*Y).^6))).^0.15;
%fz(fz>9)=9;
pcolor(fz);
cm=colormap("jet");
cm(end,:)=cm(end-1,:);
colormap(cm);
shading interp
axis(100*[1 12 2 13],'square','off')