Skip to content

Commit

Permalink
more references
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlebring authored Sep 13, 2019
1 parent f36a20c commit 9d548e0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/src/innersolvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ projection is handled, e.g., if you use the type [`SPMF_NEP`](@ref)
with only a few terms. For instance,
if you wish to use the infinite Arnoldi method ([`iar`](@ref))
to handle the project solves in the nonlinear
Arnoldi method ([`nlar`](@ref)), you can do the following:
Arnoldi method ([`nlar`](@ref)), you can call `nlar` with the kwarg `inner_solver_method=`[`IARInnerSolver`](@ref)`()`:

```julia-repl
julia> nep=nep_gallery("dep0_tridiag");
Expand Down Expand Up @@ -165,13 +165,14 @@ which are designed to be as efficient as possible.

### Projection functions

You can create a projected NEP with `create_proj_NEP`:
You can create a projected NEP with `create_proj_NEP`, and specify the
projection space with
[`set_projectmatrices!`](@ref) and [`expand_projectmatrices!`](@ref).

```@docs
create_proj_NEP
```


```@docs
set_projectmatrices!
```
Expand All @@ -188,8 +189,7 @@ inherit from `ProjectableNEP`.
ProjectableNEP
```

The result of the
projection is represented in a `Proj_NEP`.
The result of the projection is represented in a `Proj_NEP`.

```@docs
Proj_NEP
Expand All @@ -210,3 +210,5 @@ Proj_SPMF_NEP
```@docs
compute_rf
```

![To the top](http://jarlebring.se/onepixel.png?NEPPACKDOC_INNERSOLVE)

0 comments on commit 9d548e0

Please sign in to comment.