如何使用 h5py 获取 HDF5 阵列的内存布局?
How to get the memory layout of a HDF5 array with h5py?
在 numpy 中,可以使用 my_array.flags
检查数组是 C 序还是 F 序。使用 h5py 读取的 HDF5 数据集的等效项是什么?
An HDF5 dataset created with the default settings will be contiguous; in other words, laid out on disk in traditional C order.
查看此 question 了解更多详情。长话短说,如果需要,您的数组会自动转换,所有内容都按 C 顺序存储。
在 numpy 中,可以使用 my_array.flags
检查数组是 C 序还是 F 序。使用 h5py 读取的 HDF5 数据集的等效项是什么?
An HDF5 dataset created with the default settings will be contiguous; in other words, laid out on disk in traditional C order.
查看此 question 了解更多详情。长话短说,如果需要,您的数组会自动转换,所有内容都按 C 顺序存储。