starting varDTC with uncertain inputs [not working]

This commit is contained in:
Max Zwiessele 2014-02-05 10:48:23 +00:00
parent 70e7d72bf2
commit b2328c4f47
5 changed files with 29 additions and 12 deletions

View file

@ -41,6 +41,17 @@ else:
_blas_available = False
warnings.warn("warning: caught this exception:" + str(e))
def dtrtri(L, lower=0):
"""
Wrapper for lapack dtrtrs function
Inverse of L
:param L: Triangular Matrix L
:param lower: is matrix lower (true) or upper (false)
:returns: Li, info
"""
return lapack.dtrtri(L, lower=lower)
def dtrtrs(A, B, lower=0, trans=0, unitdiag=0):
"""
Wrapper for lapack dtrtrs function