renamed files, lesson 10/11

This commit is contained in:
elvis
2023-11-15 11:23:16 +01:00
parent 8d7c769823
commit 9e7f427faa
188 changed files with 321 additions and 7 deletions

View File

@ -0,0 +1,7 @@
function tightsubplot(dim, i, data)
row = mod(i-1, dim);
col = floor((i-1) / dim);
subplot('position', [row*(1/dim), (dim-col-1)*(1/dim), 1/dim-.001, 1/dim-0.001 ]);
imagesc(data);
axis off;