【python】cholesky

numpy.linalg和scipy.linalg中都有cholesky()函数

不同之处在于:

numpy : s = LLT,返回的L是下三角阵
scipy : s = LLT返回的L是上三角阵


你可能感兴趣的:(【python】cholesky)