Create a new HDF5 dataset
H5Dcreate(
h5loc,
name,
dtype_id,
h5space,
lcpl = NULL,
dcpl = NULL,
dapl = NULL
)An object of class H5IdComponent representing a H5
location identifier (file or group). See H5Fcreate(), H5Fopen(),
H5Gcreate(), H5Gopen() to create an object of this kind.
Name of the dataset.
A character name of a datatype. See h5const("H5T")
for possible datatypes. Can also be an integer representing an HDF5 datatype.
An object of class H5IdComponent representing a H5 dataspace.
See H5Dget_space(), H5Screate_simple(), H5Screate() to create an object
of this kind
An objects of class H5IdComponent representing HDF5 property lists. Specially these should respectively be: a link creation property list, a dataset creation property list, a dataset access property list
An object of class H5IdComponent representing the opened dataset.