haskell-numerics / hmatrix

Linear algebra and numerical computation
381 stars 104 forks source link

LDL decomposition #129

Closed amigalemming closed 9 years ago

amigalemming commented 9 years ago

I would like to have the LDL decomposition in hmatrix additionally to the Cholesky decomposition.

albertoruiz commented 9 years ago

I plan to add an interface to dsytrf / dsytrs. Thanks for the suggestion!

albertoruiz commented 9 years ago

I have added ldlPacked and ldlSolve.

albertoruiz commented 9 years ago

But we still need data types for the these {LU,LDL,etc.} packed structures, and also for symmetric/ hermitian matrices. I am working on this.