Skip to content

Commit

Permalink
Merge pull request #65 from nidtec-una/64-prepare-for-release-v020
Browse files Browse the repository at this point in the history
Update README to prepare for release `v.0.2.0`
  • Loading branch information
jhabriel authored Jun 27, 2024
2 parents 52b0b09 + d73f9bc commit acec087
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 acec087

Please sign in to comment.