What's the "best" way of constructing an array that can grow adaptively? For example, it has fixed m rows but the number of columns grows as an algorithm proceeds. Unfortunately,
resize!
doesn't work for 2d arrays. It does work for Array{Array{Float64,1},1},
but not sure that's optimal.
