readdlm gives you a matrix, just like Fortran, Julia’s matrix is column major, so the first 2 elements will be 1,3:
julia> readdlm("./test")
2×2 Matrix{Float64}:
1.0 2.0
3.0 4.0
readdlm gives you a matrix, just like Fortran, Julia’s matrix is column major, so the first 2 elements will be 1,3:
julia> readdlm("./test")
2×2 Matrix{Float64}:
1.0 2.0
3.0 4.0