removehdf5group

Removes a group and its children from the file.

Syntax

removehdf5group(filename, groupPath)

Inputs

filename
Path to the HDF5 file.
Type: string
groupPath
Fully qualified path of the group in the file.
Type: string

Example 1

Remove a group.
createhdf5group('test.h5','/group3');
      input=[1,2;3,4];
      createhdf5dataset('test.h5','/group3/QUAD4',input)
      removehdf5group('test.h5','/group3')