From 63f4c4b54cac65715ad8aacf2c8712d986f39d2a Mon Sep 17 00:00:00 2001 From: Guilherme Tadashi Maeoka Date: Mon, 17 May 2021 18:38:35 -0300 Subject: [PATCH] Fix Octave solution evaluation --- octave/test/test_run.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octave/test/test_run.m b/octave/test/test_run.m index cf8eb12..904e995 100644 --- a/octave/test/test_run.m +++ b/octave/test/test_run.m @@ -23,4 +23,4 @@ x = envelopeBackwardSubstitution(U, y); x_ = A \ b; -norm(x_ - x) / norm(x) +norm(x_ - x) / norm(x_)