mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-30 14:35:15 +02:00
starting varDTC with uncertain inputs [not working]
This commit is contained in:
parent
70e7d72bf2
commit
b2328c4f47
5 changed files with 29 additions and 12 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue