Searching a HDF5 dataset

前端 未结 4 2152
情歌与酒
情歌与酒 2020-12-09 10:34

I\'m currently exploring HDF5. I\'ve read the interesting comments from the thread \"Evaluating HDF5\" and I understand that HDF5 is a solution of choice for storing the dat

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-09 11:14

    What do you mean by identifier ? If you mean an attribute, check this tutorial. In C:

    status = H5Aread(attr_id, mem_type_id, buf);
    status = H5Awrite(attr_id, mem_type_id, buf);
    

提交回复
热议问题