• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 2
  • 25
  • 0
  • 0
  • 266
r = -1e2:1/1e3:1e2;
A = reshape((1:9),3,3);
B = 3.45678;
c = jet(9);
for i = 1:3
for j = 1:3
b = cos(r*1.5*A(i,j));
a = b/2+1;
subplot(3,3,A(i,j))
x = a.*sin(r.*2) + sin(r.*B)./10.*b;
y = a.*cos(r.*3.5) + cos(r.*B)./10.*b;
plot(x,y,':','Color',c(A(i,j),:));
ax=gca;
ax.Visible='off';
end
end
Remix Tree