From a2073becc81795d3d80dd8b9cec017d993d06687 Mon Sep 17 00:00:00 2001 From: Experiments DB Dev Date: Fri, 24 Jul 2026 10:12:10 -0400 Subject: [PATCH] fix(matlab): reduce y-axis label offset again (0.03 -> 0.015) 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 a7e15f8..f57d569 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.03, yp(2), 0]); +set(ylh, 'Position', [yp(1) - 0.015, yp(2), 0]); drawnow; exportgraphics(fig, outFile, 'Resolution', 150); close(fig);