fix(matlab): compact plot layout, batch 4

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Experiments DB Dev
2026-07-24 09:53:26 -04:00
parent 70b07acce2
commit 2749a7d208
12 changed files with 21 additions and 46 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 33 KiB

@@ -38,7 +38,9 @@ legend([e1 e2], {sprintf('anodal, N = %d', na), sprintf('control, N = %d', nc)},
'Location', 'northwest', 'Box', 'off');
xlabel('training day'); ylabel(ylab);
title(vname, 'Interpreter', 'none');
% Compact publication layout with a tight centred plot box and ticks pointing
% out. Setting XTickLabel {} then xticklabels('auto') resets the labels cleanly
% after the Position change.
set(gca, 'XTick', xd, 'XTickLabel', {}, 'Position', [0.2 0.30 0.60 0.60], ...
'FontName', 'Arial', 'FontSize', 13, 'LineWidth', 1.5, 'Box', 'off', 'TickDir', 'out');
xticklabels('auto')