HDF5文件中的复合数据集是一个数据集元素?

时间:2018-08-20 08:57:03

标签: hdf5 chunks chunking hdf hdf5storage

对于复合数据集,什么是一个数据集元素? 假设我有一个定义为

的结构
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct Annotation
{
    public long Id;
    public int TimeOffset;
    public int Value;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 200)]
    public string Remark;
    public byte Status;
}

我首先在H5Pset_chunk中看到数据集元素项。

什么叫一个数据集元素? 结构的一个成员(long Idint TimeOffset等)还是结构的一个对象(例如Annotation annotationObj)?

注意:我的数据集是100个结构对象的列表。

0 个答案:

没有答案