h5read
Read HDF5 data set.
📝Syntax
val = h5read(filename, location)
📥Input Arguments
Parameter Description
filename a string: hdf5 filename.
location a string: full path identifying a data set.
📤Output Arguments
Parameter Description
val a nelson's variable.
📄Description

h5read reads data set in location from the HDF5 file.

💡Examples
h5_directory = [modulepath('hdf5','tests'), '/h5'];
double_data = [h5_directory, '/h5ex_t_float.h5'];
R = h5read(double_data,'/DS1')
🔗See Also
h5write
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub