Skip to content

Commit

Permalink
Update installation command
Browse files Browse the repository at this point in the history
  • Loading branch information
mpf committed Mar 4, 2022
1 parent 1e76e3c commit a506e38
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ The least-squares solver uses Björck's corrected semi-normal equation (CSNE) ap
## Installing

```julia
Pkg.add(url="https://github.com/mpf/QRupdate.jl")
import Pkg
Pkg.add("QRupdate")
```

## Examples
Expand Down Expand Up @@ -86,4 +87,4 @@ x, r = csne(R, A, b)
- 19 Oct 2007: Sparse `A`, a makes `c` and `u` sparse. Force them to be dense.
- 04 Aug 2008: Update `u` using `du`, rather than `u = R*z` as in Ake's book. We guess that it might be slightly more accurate, but it's hard to tell. No `R*z` makes it a little cheaper.
- 03 Sep 2008: Generalize `A` to be `[A; β*I]` for some scalar `β`. Update `u` using `du`, but keep Ake's version in comments.
- 29 Dec 2015: Converted to Julia.
- 29 Dec 2015: Converted to Julia.

0 comments on commit a506e38

Please sign in to comment.