You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. In the utilities.py file, the function multiple_pdinv is described as:
defmultiple_pdinv(A):
""" Arguments --------- A : A DxDxN numpy array (each A[:,:,i] is pd) Returns ------- invs : the inverses of A hld: 0.5* the log of the determinants of A """
but when I call the function with random PD matrices, I don't always return the inverse.
In particular, calling the function with the PD matrix
Hi. In the utilities.py file, the function multiple_pdinv is described as:
but when I call the function with random PD matrices, I don't always return the inverse.
In particular, calling the function with the PD matrix
returns the correct
but calling it with a random matrix, say
returns
but the inverse is
Am I missing an assumption on what types of tensors go into multiple_pdinv?
The text was updated successfully, but these errors were encountered: