removehdf5group
Removes a group and its children from the file.
Syntax
removehdf5group(filename, groupPath)
Inputs
- filename
- Path to the HDF5 file.
- groupPath
- Fully qualified path of the group in the file.
Example 1
createhdf5group('test.h5','/group3');
input=[1,2;3,4];
createhdf5dataset('test.h5','/group3/QUAD4',input)
removehdf5group('test.h5','/group3')