Hello,
I am using Julia 1.0.4 to do a cholesky decomposition I wrote the following code:
using LinearAlgebra
A=[1 0 1; 0 2 0; 1 0 3];
BB=cholesky(A);
and the result is:
BB=Cholesky{Float64,Array{Float64,2}}([1.0 0.0 1.0; 0.0 1.41421 0.0; 1.0 0.0 1.41421], āUā, 0)
and I am not able to do further calculations on my BB matrix because of its format.
My question is how to convert the output of cholesky decomposition with Cholesky{Float64,Array{Float64,2}} format to Array{Float64,2}
Utimately, I need my BB=[1.0 0.0 1.0; 0.0 1.41421 0.0; 1.0 0.0 1.41421]