From 6823ddab77cdbea1949e0531f0f59f11fbb9c150 Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Wed, 3 Jul 2024 16:01:55 -0600 Subject: [PATCH] Fix typo --- scico/solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scico/solver.py b/scico/solver.py index 69f218274..e9c1afe3a 100644 --- a/scico/solver.py +++ b/scico/solver.py @@ -390,7 +390,7 @@ def lstsq( Solve the least squares problem .. math:: - \argmin_{\mb{x}} \; (1/2) \norm{ A \mb{x} - \mb{b}) }_2^2 \;, + \argmin_{\mb{x}} \; (1/2) \norm{ A \mb{x} - \mb{b} }_2^2 \;, where :math:`A` is a linear operator and :math:`\mb{b}` is a vector. The problem is solved using :func:`cg`.