Hi. I am trying to solve a linear system defined by a Symmetric sparse matrix. The lufact is working well, but as the matrix is symmetric, I intend to use ldltfact.
Unfortunately, it is returning the following error:
ERROR: `ldltfact` has no method matching
ldltfact(::SparseMatrixCSC{Float64,Int64})
but my matrix is reported as
typeof(A)
SparseMatrixCSC{Float64,Int64}.
Is it an error or Im doing something wrong.
Thanks,
Eduardo.
