removehdf5dataset

Removes the dataset from the HDF5 file.

Syntax

removehdf5dataset(filename, datasetPath)

Inputs

filename
Path to the HDF5 file.
Type: string
datasetPath
Fully qualified path of the dataset in the file.
Type: string

Example 1

Remove a dataset.

input=[1,2;3,4];
      createhdf5dataset('test.h5','/QUAD4',input)
      removehdf5dataset('test.h5','/QUAD4')