如何在Matlab

时间:2015-11-23 14:02:37

标签: string matlab hdf5 hdf

我想知道如何在HDF5属性字符串下面添加换行符。

DescType_id = H5T.copy ('H5T_C_S1');
H5T.set_size (DescType_id, numel(description));
H5T.set_strpad(DescType_id,'H5T_STR_NULLTERM');
DescAttr_id = H5A.create (g2id, 'description', DescType_id, ...
    STimeSpace, 'H5P_DEFAULT');
H5A.write (DescAttr_id, DescType_id, description);
H5T.close(DescType_id);
H5A.close(DescAttr_id);

我的描述变量是:

description="Experiment:\nID: 1234\nLocation: London"

我希望换行符在上面的代码中类似'\ n'。预期产出:

Group '/' 
  Group '/G1' 
    Attributes:
      'description':  'Experiment:
      ID: 1234
      Location: London'

非常感谢您的帮助。感谢。

0 个答案:

没有答案