Skip to content

Commit

Permalink
Update README.md with LGMRES(m) info
Browse files Browse the repository at this point in the history
  • Loading branch information
jhabriel authored Jun 27, 2024
1 parent 52b0b09 commit d73f9bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ Variant of the restarted GMRES that employs a Proportional-Derivative (PD) contr
[x, flag, relresvec, mvec, time] = pd_gmres(A, b, mInitial, mMinMax, mStep, tol, maxit, xInitial, alphaPD)
```

### LGMRES(*m*) ([Baker & Jessup & Manteuffel, 2005](https://epubs.siam.org/doi/abs/10.1137/S0895479803422014))

Modified implementation of the restarted GMRES performed that appends *k* error approximation vectors to the restarting Krylov
subspace, as a way to preserve information from previously discarted search subspaces.

```Matlab
[x, flag, relresvec, time] = lgmres(A, b, m, k, tol, maxit, xInitial)
```

## Contributing

If you wish to contribute to KrySBAS, please read the [developer guide](https://github.com/nidtec-una/krysbas-dev/blob/dev_guide/dev_guide.md) before opening a pull request.
Expand Down

0 comments on commit d73f9bc

Please sign in to comment.