- /
-
MATLAB Resurrections
on 6 Oct 2021
- 16
- 164
- 4
- 0
- 229
s = 'MATLAB R2021b';
figure('Color','k')
axes('Position',[0 0 1 1])
rng(0)
for j=1:100
x = rand;
i = randi(12,1,randi(96));
n = numel(i);
for k=1:n
y = 1-.01*k;
c = k/n;
t = text(x,y,s(i(k)));
t.FontSize = 6;
t.Color = [c/2 sqrt(c) c/2];
end
end
axis off