5. 往新建的hdf中写入数据 6. 给数据集写属性 官方中文文档 1. 显示hdf文件中的数据集以及属性等等信息 h5disp('文件名.hdf');1 例如:h5disp('dataset/sample_A_padded_20160501.hdf');输出:HDF5 sample_A_padded_20160501.hdf Group'/' Attributes:'file_format': ...
%read-read access ,create-create a new access ,rdwr or write-read and write %access %---step two---find the information [ndatasets,nglobal_attr,status] = hdfsd('fileinfo',sd_id); % HDF4 file contains ndatasets data sets and nglobal_attr global attribute. % status 表示状态 vaule=-...
read表示读文 件。 其次 , 要选择数据集, 用 sds_ id=hdNd( ‘select ’, scK id, sds— idx ) l sds_idN下面的用法 中代表所打开的数的数据集, 它是要打开的数据集 在HDF 文件中的索引号 。 然后是最重要的一步 , 从数据集中读文件 , 语法为: [data, statusl=hdfsd( ‘ readdata’ , sds...
% Read data set named 'Example SDS' data = hdfread('example.hdf','Example SDS'); Example 2: % Retrieve info about example.hdf fileinfo = hdfinfo('example.hdf'); % Retrieve info about Scientific Data Set in example.hdf data_set_info = fileinfo.SDS; % Check the size data_set_info...
MATLAB读HDF数据(转载) hdf (hierarchical data format) 中文可译为分级数据格式,卫星资料多用这种形势存储。 %---step one---open file s='D:\parter\ben\QS_XWGRD3_2006192.20070991754'; sd_id = hdfsd('start',s,'read'); % sd_id is the identifier of SDfile %read-read access,create-create...
或者通过在命令窗口输入:hdftool(example.hdf),也可打开在MATLAB路径下文件名为‘example.hdf’的HDF文件。由于是可视化的工具,所以能够很直观的显示HDF文件,而且将数据输出的操作简单易行。 2)使用信息读取函数hdfinfo 通过在MATLAB中使用hdfinfo这个函数,可以获得HDF文件的信息,其语法为: S= hdfinfo(filename)或S...
ftp://ftp.hdfgroup.org/HDF/HDF_Current/bin. ncdump can only read HDF files if your local copy of netCDF was originally compiled with HDF support. To dump the entire file:hdp <filename> or ncdump <filename> To get just the header information:hdp dumpsds -h <filename> or ncdump -h...
2. 读取hdf文件中的数据 data= h5read('文件名.hdf','数据集名'); 1 例如: raw = h5read('dataset/sample_A_padded_20160501.hdf','/volumes/raw'); 1 3. 读取数据集的属性 attribute = h5readatt('文件名.hdf','数据集名','属性名'); ...
本文首先介绍了HDF文件格式,以及几种常用的HDF文件读取方式和各自的优缺点。在此基础上,详细给出了MATLAB读取HDF文件的简易方法和代码。最后,本文给出了利用MATLAB读取NCEP数据的应用实例。关键词 HDF格式,MATLAB,科学数据A practical way to read HDF data with MATLABBai Long1、Lei Hui2、Zhang Xuan2(1.Nanjing...
hdfmatlab读取方法文件hdfread科学数据 基于Matlab的HDF文件读取方法 网贷经典http://.p2pjd [摘要]HDF是一种广泛用于科学数据共享的国际标准 数据格式,正确高效地读取HDF文件数据是对其进行应用的基 础。本文首先介绍了HDF文件格式,在此基础上,详细给出了 Matlab读取HDF文件的简易方法和代码。 [关键词]HDF格式;Matlab...