I would like to programatically change the data associated with a dataset in an HDF5 file. I can't seem to find a way to either delete a dataset by name (allowing me to add it again with the modified data) or update a dataset by name. I'm using the C API for HDF5 1.6.x but pointers towards any HDF5 API would be useful.
|
feedback
|
|
According to the user guide (section 5.2, you'll need to scroll down some):
So deleting appears to be out of the question. On the other hand modifying the dataset in place is supported. | |||||
feedback
|