【python】cholesky

numpy.linalg和scipy.linalg中都有cholesky()函数
【【python】cholesky】不同之处在于:
numpy : s = LLT,返回的L是下三角阵 scipy : s = LLT,返回的L是上三角阵

    推荐阅读