make-github-pseudonymous-again / js-algorithms

:rocket: Algorithms for JavaScript
GNU Affero General Public License v3.0
38 stars 3 forks source link

Least-squares approximation #56

Open make-github-pseudonymous-again opened 4 years ago

make-github-pseudonymous-again commented 4 years ago

min_b Ab - y b = A^+ y where A^+ is the pseudoinverse of A

See Introduction to algorithms by TH Cormen, CE Leiserson, RL Rivest, C Stein.

make-github-pseudonymous-again commented 4 years ago

Superset of #21.