We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 246de5a commit 55d41f6Copy full SHA for 55d41f6
1 file changed
tutorials/introduction-to-linear-operators/index.md
@@ -326,7 +326,7 @@ norm(b - opAAT * x)
326
327
## Limited memory BFGS and SR1
328
329
-Two other useful operators are the Limited-Memory BFGS in forward and inverse form.
+Another useful operator is the Limited-Memory BFGS in forward and inverse form.
330
331
```julia
332
B = LBFGSOperator(20)
@@ -351,7 +351,10 @@ r
351
352
353
354
-There is also a LSR1 operator that behaves similarly to these two.
+There is also a Limited-Memory SR1 operator for which only the forward form is implemented.
355
+Note that the SR1 operator can be indefinite, therefore its inverse does not necessarily exist.
356
+For this reason, the inverse form is not implemented for the SR1 operator.
357
+
358
359
## Restriction, extension and slices
360
0 commit comments