Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tutorials/introduction-to-linear-operators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ norm(b - opAAT * x)

## Limited memory BFGS and SR1

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.

```julia
B = LBFGSOperator(20)
Expand All @@ -351,7 +351,10 @@ r



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.
Note that the SR1 operator can be indefinite; therefore, its inverse form is less relevant than for the BFGS approximation.
For this reason, the inverse form is not implemented for the SR1 operator.


## Restriction, extension and slices

Expand Down