fix(matlab): vertical x-axis plots, batch 4

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Experiments DB Dev
2026-07-24 09:07:32 -04:00
parent e401455351
commit f61ebf97b9
12 changed files with 12 additions and 8 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

@@ -38,8 +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');
set(gca, 'XTick', xd, 'FontName', 'Arial', 'FontSize', 13, 'LineWidth', 1.5, 'Box', 'off');
xtickangle(90); % vertical x-axis tick labels
set(gca, 'XTick', xd, 'XTickLabelRotation', 90, ... % vertical x-axis tick labels
'FontName', 'Arial', 'FontSize', 13, 'LineWidth', 1.5, 'Box', 'off');
drawnow; % force layout so the rotation is applied headless
exportgraphics(fig, outFile, 'Resolution', 150);
close(fig);
fprintf('%s: wrote %s (anodal N=%d, control N=%d)\n', vname, outFile, na, nc);