- /
-
The Plot Thickens
on 23 Oct 2021
- 9
- 14
- 1
- 0
- 181
close all; clear;
k=1;
c=rand(28,3);
t=linspace(0,100);
for n=1:5
k=k+1
for d=8:9
R=4;
X=R*cos(n*t/d);
T=R*sin(n*t/d);
polarplot(X,T,MarkerSi=4,MarkerE=c(k*2,:))
hold on
end
end
axis off
colormap(autumn)