Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个脚本来将数据从Matlab导出为HDF4格式。我要存储在 hdf4 文件中的变量的尺寸为 3128*242*256(int 16 类型)。
谢谢
使用以下例程:
x = ones (3128, 242, 256) ; hdf5write ('file path', 'dataset name' , x )
上面的代码将创建 hdf5 文件并包含一个具有 3D 矩阵的数据集,该矩阵包含值 1。