Blame view

code/julia/miguel.jl 133 Bytes
3e0f9b8a   Francisco Coelho   back to work?
1
2
3
4
5
6
7
open("dados.dat") do file
    t = read(file, String)
    m = read(file, Array{Float32, 2}(undef, 2, 4))   
end

println(m)
println(t)