Mark, the way hdf5.jl is designed to work is like this:
x = read(obj, "x")
The string refers to a dataset in the file, but the variable on the left hand
side can be whatever you want. In other words,
zz = read(obj, "x")
is perfectly fine. In Matlab this would be the equivalent of
s = load('filename.mat', 'x');
zz = s.x;
There will be a new hdf5.jl available in the next 36 hours or so that should
be capable of directly reading "simple" .mat files that were saved as '-v7.3'
files.
--Tim
> > > To:
juli...@googlegroups.com <javascript:>
> > > Subject: Re: [julia-dev] Re: string as variable name
> > >
> > > On Wed, Oct 3, 2012 at 1:24 PM, BobC
> > > <
rcunn...@nsmsurveillance.com<javascript:>>> >