1 docstring line completed

This commit is contained in:
Ricardo 2013-09-17 14:27:16 +01:00
parent 6f8a1f81c4
commit 352a35522f

View file

@ -51,7 +51,7 @@ def dpotri(A, lower=0):
:param A: Matrix A
:param lower: is matrix lower (true) or upper (false)
:returns:
:returns: A inverse
"""
return lapack.dpotri(A, lower=lower)