`vcat([], [1 2])` # OK. `vcat([], [1 "2"])` # Not OK

Thanks. Maybe it is due to Julia version as the post above. Sorry… I was just looking for an approach to recording some process results in a loop. May I ask for some good advice on the following code?

rec = []
for i = 1:10
    rec = cat(rec, rand(3)'; dims=1)
end
rec

Thanks again. :handshake: :handshake: