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"))?
