sparse Cholesky solver
sol=chsolve(spcho,rhs)
: :rhs, sol full column vectors :
sol=chsolve(spcho,rhs) computes the solution of rhs=A*sol, with A a symmetric sparse positive definite matrix. This function is based on the Ng-Peyton programs (ORNL). See the Fortran programs for a complete description of the variables in spcho.
A=`sprand`_(20,20,0.1);
A=A*A'+`eye`_();
spcho=`chfact`_(A);
sol=(1:20)';rhs=A*sol;
spcho=`chfact`_(A);
chsolve(spcho,rhs)