Categories &

Functions List

Function Reference: h5load

Function File: data = h5load (filename)
Function File: data = h5load (filename,location)

Load an entire HDF5 file or a portion of it as a struct.

h5load(filename) loads all datasets in filename and returns the struct data. Datasets and Groups become fields of the structure reproducting the internal hierarchy of the HDF5 file. Attributes, datatypes and other components are not loaded.

h5disp(filename,location) loads all datasets in filename below the node specified by location. If location is a group, then all datasets and groups below it are returned in data. If location is a dataset, then only this dataset will be returned.

This function is not provided by the MATLAB high-level HDF5 interface.

See also: h5read

Source Code: h5load