I am trying to get:= Initialize a matrix of Float64
then adding rows to it dynamically in a loop!
I tried with push!
and append!
but not able to find the right way to do it. I am currently using a not so efficient method where each column of the matrix is constructed as a vector using push!
and then I making matrix out of those vectors using hcat
.