source: trunk/src/hdf5load.m @ 965

Last change on this file since 965 was 947, checked in by sommeria, 8 years ago

read hf5 added

  • Property svn:executable set to *
File size: 471 bytes
Line 
1% hdf5load.m
2%
3% datasets = hdf5load(filename)
4%
5% Loads all the variables in an hdf5 file and returns a structure
6% containing all the datasets present in the root of the hierarchy of the
7% file.
8
9% Author: Gael Varoquaux <gael.varoquaux@normalesup.org>
10% Copyright: Gael Varoquaux
11% License: BSD-like
12
13function datasets = hdf5load(filename)
14
15hinfo=hdf5info(filename);
16
17datasets=struct;
18hinfo.GroupHierarchy;
19datasets=hdf5load_recursion(datasets,hinfo.GroupHierarchy);
20
Note: See TracBrowser for help on using the repository browser.