mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-30 14:35:15 +02:00
added sparsegp with missing data
This commit is contained in:
parent
e96d40b4cc
commit
d0c563ff0a
19 changed files with 572 additions and 325 deletions
|
|
@ -101,17 +101,17 @@ def jitchol(A, maxtries=5):
|
|||
|
||||
|
||||
|
||||
def dtrtri(L, lower=1):
|
||||
"""
|
||||
Wrapper for lapack dtrtri function
|
||||
Inverse of L
|
||||
|
||||
:param L: Triangular Matrix L
|
||||
:param lower: is matrix lower (true) or upper (false)
|
||||
:returns: Li, info
|
||||
"""
|
||||
L = force_F_ordered(L)
|
||||
return lapack.dtrtri(L, lower=lower)
|
||||
# def dtrtri(L, lower=1):
|
||||
# """
|
||||
# Wrapper for lapack dtrtri function
|
||||
# Inverse of L
|
||||
#
|
||||
# :param L: Triangular Matrix L
|
||||
# :param lower: is matrix lower (true) or upper (false)
|
||||
# :returns: Li, info
|
||||
# """
|
||||
# L = force_F_ordered(L)
|
||||
# return lapack.dtrtri(L, lower=lower)
|
||||
|
||||
def dtrtrs(A, B, lower=1, trans=0, unitdiag=0):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue