From bb4f0d46ffa1a85ec386e1af177dc241294c6b91 Mon Sep 17 00:00:00 2001 From: michele Date: Thu, 17 Sep 2015 14:16:34 +0200 Subject: [PATCH] DOC: missing ncv optional argument in eigs --- doc/stdlib/linalg.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stdlib/linalg.rst b/doc/stdlib/linalg.rst index a04a057f69c88..5f388022cd153 100644 --- a/doc/stdlib/linalg.rst +++ b/doc/stdlib/linalg.rst @@ -901,7 +901,7 @@ Linear algebra functions in Julia are largely implemented by calling functions f Conjugate transpose array ``src`` and store the result in the preallocated array ``dest``\ , which should have a size corresponding to ``(size(src,2),size(src,1))``\ . No in-place transposition is supported and unexpected results will happen if ``src`` and ``dest`` have overlapping memory regions. -.. function:: eigs(A, [B,]; nev=6, which="LM", tol=0.0, maxiter=300, sigma=nothing, ritzvec=true, v0=zeros((0,))) -> (d,[v,],nconv,niter,nmult,resid) +.. function:: eigs(A, [B,]; nev=6, ncv=max(20,2*nev+1), which="LM", tol=0.0, maxiter=300, sigma=nothing, ritzvec=true, v0=zeros((0,))) -> (d,[v,],nconv,niter,nmult,resid) .. Docstring generated from Julia source