From 0c55176ec636f830b0c5145a9efd83838e5108de Mon Sep 17 00:00:00 2001 From: Jutho Date: Tue, 23 Oct 2018 14:32:55 +0200 Subject: [PATCH] fix typo in docs --- src/eigsolve/arnoldi.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eigsolve/arnoldi.jl b/src/eigsolve/arnoldi.jl index abbcb91..f763c48 100644 --- a/src/eigsolve/arnoldi.jl +++ b/src/eigsolve/arnoldi.jl @@ -32,7 +32,7 @@ should nevertheless be specified. Since `schursolve` is less commonly used as `e convenient keyword syntax is currently available. ### Return values: -The return value is always of the form `T, vecs, vals, info = eigsolve(...)` with +The return value is always of the form `T, vecs, vals, info = schursolve(...)` with * `T`: a `Matrix` containing the partial Schur decomposition of the linear map, i.e. it's elements are given by `T[i,j] = dot(vecs[i], f(vecs[j]))`. It is of Schur form, i.e. upper triangular in case of complex arithmetic, and block upper triangular (with at most 2x2 blocks)