1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > hdf5 matlab 通过MATLAB将矩阵数据写入HDF5文件中的每个数据类型成员

hdf5 matlab 通过MATLAB将矩阵数据写入HDF5文件中的每个数据类型成员

时间:2020-02-17 06:40:19

相关推荐

hdf5 matlab 通过MATLAB将矩阵数据写入HDF5文件中的每个数据类型成员

这是我第一次尝试通过MATLAB使用Low-Level commands从头开始创建HDF5文件.

我的问题是,我很难尝试将数据写入数据集中数据类型的每个特定成员.

首先,我创建一个新的HDF5文件,并设置正确的组图层:

new_h5 = H5F.create('new_hdf5_file.h5','H5F_ACC_TRUNC','H5P_DEFAULT','H5P_DEFAULT');

new_h5 = H5G.create(new_h5,'first','H5P_DEFAULT','H5P_DEFAULT','H5P_DEFAULT');

new_h5 = H5G.create(new_h5,'second','H5P_DEFAULT','H5P_DEFAULT','H5P_DEFAULT');

然后,我创建我的数据类型:

datatype = H5T.create('H5T_compound',20);

H5T.insert(datatype,'first_element',0,'H5T_NATIVE_INT');

H5T.insert(datatype,'second_element',4,'H5T_NATIVE_DOUBLE');

H5T.insert(datatype,'third_element',12,'H5T_NATIVE_DOUBLE');

然后,将其格式化为数据集:

new_h5 = H5D.create(new_h5,'location',datatype,H5S.create('H5S_SCALAR'),'H5P_DEFAULT');

subset = H5D.get_type(H5D.open(new_h5,'/first/second/location'));

mem_type = H5T.get_member_type(subset,0);

我收到以下命令错误:

H5D.write(mem_type,'H5ML_DEFAULT','H5S_ALL','H5S_ALL','H5P_DEFAULT',data);

Error using hdf5lib2

Unhandled HDF5 class (H5T_NO_CLASS) encountered. It is not possible to write to this attribute or dataset.

所以,我改用这种方法:

new_h5 = H5D.create(new_h5,'location',datatype,H5S.create_simple(2,dims,dims),'H5P_DEFAULT'); %where dims are the dimensions of all matrices of data structure

H5D.write(mem_type,'H5ML_DEFAULT','H5S_ALL','H5S_ALL','H5P_DEFAULT',data); %where data is a structure

我收到以下命令的错误消息:

H5D.write(mem_type,'H5ML_DEFAULT','H5S_ALL','H5S_ALL','H5P_DEFAULT',data);

Error using hdf5lib2

Attempted to transfer too many values to or from the library buffer.

在here中查找错误消息的XML标签时,它将上述错误描述为“ illegalArrayAccess”.显然,根据this question,您只能写入4个成员,而缓冲区不会引发错误?

这个对吗?如何正确写信给每个成员.我将尽力解决这个问题.

编辑:

此处保留参考以获取一般信息:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。