The content of factorization.jl is already part of the base julia, but we haven't had the cholpfact method for a while. Instead you can use a keyword to get the pivoted cholesky. E.g.
cholfact(A, pivot = true, tol = 1e-8) Where tol is the tolerance for the rank determination. 2014-12-28 10:07 GMT+01:00 jspark <[email protected]>: > For some reason I failed to install factorization package to use cholpfact > function. I tried > > Pkg.add("factorization") > > Pkg.clone(" > https://github.com/JuliaLang/julia/blob/master/base/linalg/factorization.jl > ") > > Pkg.clone(" > https://github.com/JuliaLang/julia/blob/master/base/linalg/factorization.jl > ") > > But I got > > *ERROR: chmod: no such file or directory (ENOENT)* > > Thank you everyone. > >
