Tagged Questions

0
votes
1answer
237 views

HDF5: inserting a set of strings in a dataset

I'm currently learning the HDF5 API and I'm trying to insert a set of C++ std::string into a HDF5 dataset (1 column). In the following snippet, how should I loop over a vector<string> and ...
0
votes
1answer
838 views

Delete or update a dataset in HDF5?

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 ...