Last chance! 50% off unlimited learning
Sale ends in
H5Pcreate (type = h5default("H5P"))
H5Pcopy (h5plist)
H5Pget_class (h5plist)
H5Pclose (h5plist)
H5Pclose_class (h5plistclass)
H5Pequal (h5plistclass1, h5plistclass2)
h5const("H5P")
for possible property list types. Can also be an integer representing an HDF5 property list type.H5IdComponent
representing a H5 property list identifier. See H5Pcreate
or H5Pcopy
to create an object of this kind.H5IdComponent
representing a H5 property list class identifier. See H5Pget_class
to create an object of this kind.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.
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