- createhdf5attribute
Creates a new attibute at a given location and writes data to the attribute.
- createhdf5dataset
Creates a new dataset and writes data. Errors out if dataset exists; creates file if it doesn't exist.
- createhdf5group
Creates a group in an HDF5 file. All intermediate groups in the path should exist.
- removehdf5attribute
Removes the attribute at a given location.
- removehdf5dataset
Removes the dataset from the HDF5 file.
- removehdf5group
Removes a group and its children from the file.
- renamehdf5attribute
Renames an attribute at a given location.
- renamehdf5dataset
Moves the dataset from the source path to the destination path. All intermediate groups in the destination should exist.
- renamehdf5group
Moves a group from the source path to the destination path. All intermediate groups in the destination should exist.
- writehdf5attribute
Writes data to an existing attibute at a given location.
- writehdf5dataset
Writes data to the existing dataset. Errors out if dataset does not exist.