There is no standard for representing complex numbers in delimited files. I would just split them, eg
writedlm("/tmp/t.txt", hcat(real.(t), imag.(t)))
u = readdlm("/tmp/t.txt") |> x -> Complex.(x[:, 1], x[:, 2])
t == u # true
There is no standard for representing complex numbers in delimited files. I would just split them, eg
writedlm("/tmp/t.txt", hcat(real.(t), imag.(t)))
u = readdlm("/tmp/t.txt") |> x -> Complex.(x[:, 1], x[:, 2])
t == u # true