- /
-
Patchwork Quilt
on 8 Oct 2021
- 8
- 62
- 0
- 0
- 252
f = figure("Color",[rand(1) rand(1) rand(1)]);
axis off
h = plotmatrix(magic(20));
for i = 1:400
h(i).Color = [rand(1) rand(1) rand(1)];
h(i).Parent.XTick = [];
h(i).Parent.YTick = [];
end
for i = 1:size(f.Children)
f.Children(i).Color = [rand(1) rand(1) rand(1)];
end