2006-03-07 00:11:11 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2006-03-07 00:11:11 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2006-03-07 00:11:11 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2006-04-13 05:21:38 +08:00
|
|
|
#include "hdf5.h"
|
2006-04-20 12:49:06 +08:00
|
|
|
#include "hdf5_hl.h"
|
2006-03-01 23:05:37 +08:00
|
|
|
|
|
|
|
#define RANK 2
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
int
|
|
|
|
main(void)
|
2006-03-01 23:05:37 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t file_id;
|
|
|
|
hsize_t dims[RANK] = {2, 3};
|
|
|
|
int data[6] = {1, 2, 3, 4, 5, 6};
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create a HDF5 file */
|
|
|
|
file_id = H5Fcreate("ex_lite1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* create and write an integer type dataset named "dset" */
|
|
|
|
H5LTmake_dataset(file_id, "/dset", RANK, dims, H5T_NATIVE_INT, data);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* close file */
|
|
|
|
H5Fclose(file_id);
|
2006-03-01 23:05:37 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
return 0;
|
2006-03-01 23:05:37 +08:00
|
|
|
}
|