Skip to content

Commit

Permalink
actually add docs page
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Jan 5, 2025
1 parent fc8ee56 commit c5439cc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/src/man/leastsquares.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Least squares problems

Least square problems take the form of finding `x` that minimises `norm(b - A*x)` where
`A` should be a linear map. As opposed to linear systems, the input and output of the linear
map do not need to be the same, so that `x` (input) and `b` (output) can live in different
vector spaces. Such problems can be solved using the function `lssolve`:

```@docs
lssolve
```

0 comments on commit c5439cc

Please sign in to comment.