fix(matlab): halve y-axis label offset (0.06 -> 0.03)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Experiments DB Dev
2026-07-24 10:08:59 -04:00
parent 4504a7aa4c
commit 353f8fb44a
+1 -1
View File
@@ -53,7 +53,7 @@ grid on
% Add breathing room between the y-axis label and the tick numbers.
set(ylh, 'Units', 'normalized');
yp = get(ylh, 'Position');
set(ylh, 'Position', [yp(1) - 0.06, yp(2), 0]);
set(ylh, 'Position', [yp(1) - 0.03, yp(2), 0]);
drawnow;
exportgraphics(fig, outFile, 'Resolution', 150);
close(fig);