ex_lite1.c

来自「在雷达遥感等方面应用的hdf5数据格式的编程源代码」· C语言 代码 · 共 48 行

C
48
字号
/**************************************************************************** * NCSA HDF                                                                 * * Scientific Data Technologies                                             * * National Center for Supercomputing Applications                          * * University of Illinois at Urbana-Champaign                               * * 605 E. Springfield, Champaign IL 61820                                   * *                                                                          * * For conditions of distribution and use, see the accompanying             * * hdf/COPYING f.                                                           * *                                                                          * ****************************************************************************/#include "H5LT.h"int main( void ){  hid_t       file_id;  hsize_t     dims[2]; int         data[6]={1,2,3,4,5,6}; herr_t      status;	EXAMPLE("make a dataset");   //EXAMPLE  在H5LT.h 中定义,将字符输出   file_id = H5Fcreate ("ex_lite1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);     dims[0] = 2; dims[1] = 3; status = H5LTmake_dataset(file_id,"/dset",2,dims,H5T_NATIVE_INT,data);         status = H5Fclose (file_id);    	PASSED();                        //PASSED 在H5LT.h 中定义,输出"Passed" return 0; }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?