From 6ea5122e2b28117ebbc3ac475eb659622dc408f1 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 01:07:41 +0000 Subject: [PATCH] chore: remove obsolete TODO comment in MATLAB eigenface script Removed the `% TODO: compute coef` comment from `matlab/lab11.m` since the logic to compute the coefficient was already fully implemented and correctly in place right beneath the comment. Co-authored-by: tsainez <13399044+tsainez@users.noreply.github.com> --- matlab/lab11.m | 1 - 1 file changed, 1 deletion(-) diff --git a/matlab/lab11.m b/matlab/lab11.m index 491f192..b56441d 100644 --- a/matlab/lab11.m +++ b/matlab/lab11.m @@ -33,7 +33,6 @@ figure(1), subplot(1, 2, 1); imshow(imresize(x, 4)); title('input'); -% TODO: compute coef x = x(:); coef = U' * (x - x_bar);