Skip to content

Commit

Permalink
DOC: missing ncv optional argument in eigs
Browse files Browse the repository at this point in the history
  • Loading branch information
mzaffalon committed Sep 17, 2015
1 parent 5bebf41 commit bb4f0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/stdlib/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb4f0d4

Please sign in to comment.