Skip to content

Commit cc9ba36

Browse files
Update descriptions for BFGS and SR1 operators (#154)
1 parent ab33f47 commit cc9ba36

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • tutorials/introduction-to-linear-operators

tutorials/introduction-to-linear-operators/index.jmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ norm(b - opAAT * x)
194194

195195
## Limited memory BFGS and SR1
196196

197-
Two other useful operators are the Limited-Memory BFGS in forward and inverse form.
197+
Another useful operator is the Limited-Memory BFGS in forward and inverse form.
198198

199199
```julia
200200
B = LBFGSOperator(20)
@@ -211,7 +211,9 @@ end
211211
r
212212
```
213213

214-
There is also a LSR1 operator that behaves similarly to these two.
214+
There is also a Limited-Memory SR1 operator for which only the forward form is implemented.
215+
Note that the SR1 operator can be indefinite; therefore, its inverse form is less relevant than for the BFGS approximation.
216+
For this reason, the inverse form is not implemented for the SR1 operator.
215217

216218
## Restriction, extension and slices
217219

0 commit comments

Comments
 (0)