I have a CHOLMOD factorization of a sparse matrix H
, and I want to edit the sparse representation of the upper, lower, and block diagonal factors. How can I do this? When I run the below, the last line doesn't work.
H = sprand(10,10,0.5)
fac = ldltfact(H; shift=0.0)
fD = fac[:D]
D = Base.SparseArrays.CHOLMOD.Sparse(fD)
And is there any way to go in the reverse direction from a sparse matrix to a CHOLMOD.factor
?