• Remix
  • Share
  • New Entry

on 6 Oct 2021
  • 2
  • 24
  • 0
  • 0
  • 255
tiledlayout(3,12);
s = ' HAPPY 20th ANNIVERSARY!';
for i = 1:36
nexttile;
t = 0:1/randi(20):randi(20)*pi;
r = sin(randi(20)*t).*cos(randi(20)*t);
polarplot(t,r);
title(s(i))
a = gca;
a.GridAlpha = 0;
a.RTickLabelMode = 'manual';
a.ThetaTickLabelMode = 'manual';
end
Remix Tree