Learn R Programming

rhdf5 (version 2.16.0)

HDF5 Property List Interface: HDF5 Property List Interface

Description

The functions, macros, and subroutines listed here are used to manipulate property list objects in various ways, including to reset property values. With the use of property lists, HDF5 functions have been implemented and can be used in applications with many fewer parameters than would be required without property lists.

Usage

H5Pcreate (type = h5default("H5P")) H5Pcopy (h5plist) H5Pget_class (h5plist) H5Pclose (h5plist) H5Pclose_class (h5plistclass) H5Pequal (h5plistclass1, h5plistclass2)

Arguments

type
A character name of a property list type. See h5const("H5P") for possible property list types. Can also be an integer representing an HDF5 property list type.
h5plist
An object of class H5IdComponent representing a H5 property list identifier. See H5Pcreate or H5Pcopy to create an object of this kind.
h5plistclass, h5plistclass1, h5plistclass2
An object of class H5IdComponent representing a H5 property list class identifier. See H5Pget_class to create an object of this kind.

Value

H5Pcreate and H5Pcopy return an object of class H5IdComponent representing a H5 property list identifier.H5Pget_class returns an object of class H5IdComponent representing a H5 property list class identifier.The other functions return the standard return value from their respective C-functions.

Details

Interface to the HDF5 C-library libhdf5. See http://www.hdfgroup.org/HDF5/doc/RM/RM_H5P.html for further details.

References

http://www.hdfgroup.org/HDF5

See Also

rhdf5, H5P_DATASET_CREATE

Examples

Run this code
pid <- H5Pcreate()
pid2 <- H5Pcopy(pid)
pclid <- H5Pget_class(pid)
H5Pclose_class(pclid)
H5Pclose(pid)
H5Pclose(pid2)

Run the code above in your browser using DataLab