Can you use JLD.jl? It also writes hdf5 files, but adds annotation to allow
julia to know what it's dealing with.
Best,
--Tim
On Friday, June 17, 2016 10:51:07 AM CDT Kaela Martin wrote:
> Let's say I have a composite type of:
>
> type TEST
> numbers
> times
> measurement
> end
>
> t = TEST([1 2],[3 4 5],[6 7 8 9])
>
> I want the variable to be local to a function, so I'm using HDF5. However,
> the usual fid["t"] = t gives an error that write has no method matching
>
> ::MB.
>
> How would I save this composite type using HDF5? After saving it, can I
> call an element back later by i.e. read(fid("t.numbers"))?