From 353f8fb44a8be8f2fc47fb577eef5af5565796b6 Mon Sep 17 00:00:00 2001 From: Experiments DB Dev Date: Fri, 24 Jul 2026 10:08:59 -0400 Subject: [PATCH] fix(matlab): halve y-axis label offset (0.06 -> 0.03) Co-Authored-By: Claude Opus 4.8 --- analysis/matlab/variation_plot.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analysis/matlab/variation_plot.m b/analysis/matlab/variation_plot.m index dfcf58d..a7e15f8 100644 --- a/analysis/matlab/variation_plot.m +++ b/analysis/matlab/variation_plot.m @@ -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);