I get an error when not allocating `x` when I have multiple RHS. ``` A = Symmetric(rand(10,10)) b = rand(10,2) cg(A,b) #Gives error because x is created as an vector cg!(zeros(size(b)),A,b) #this works ``` I guess cg(A,b) should also work?