I'm migrating from matlab to Julia. Using julia v 0.4.2 and package NetCDF by Meggart
I'm trying to import a variable the same way i import it in matlab:
Tiempo = ncread(Arch,"Times")';
And, if i view the contents of the variable on Matlab i have: type 24x19 char and contents:
Tiempo(1,:) = 2010-03-01_01:00:00
In julia, however, i only get:
julia> typeof(Tiempo[1,:])
Array{UInt8,2}
julia> Tiempo[1,:]
1x19 Array{UInt8,2}:
0x32 0x30 0x31 0x30 0x2d 0x30 … 0x3a 0x30 0x30 0x3a 0x30 0x30
And i don't know how to use it or how to recover the useful data. Can you throw a light on this?