Description Usage Arguments Details Value Author(s) References See Also Examples
The Group interface functions create and manipulate groups of objects in an HDF5 file.
1 2 3 4 5 6 7 8 9 |
h5loc |
An object of class |
name |
Name of the group. |
h5group |
An object of class |
n |
Position in the index of the group for which information is retrieved (Counting is 1-based). |
group_name |
An additional group name specifying the group for which information is sought. It is interpreted relative to |
index_type |
See |
order |
See |
Interface to the HDF5 C-library libhdf5. See https://portal.hdfgroup.org/display/HDF5/Groups for further details.
H5Gcreate
, H5Gcreate_anon
, and H5Gopen
return an object of class H5IdComponent
representing a H5 group identifier.
H5Gget_info
, H5Gget_info_by_idx
, and H5Gget_info_by_name
return a list with the group information.
The other functions return the standard return value from their respective C-functions.
Bernd Fischer
https://portal.hdfgroup.org/display/HDF5
rhdf5
1 2 3 4 5 6 7 8 9 10 | fid <- H5Fcreate("ex_H5G.h5")
gid <- H5Gcreate(fid, "foo")
gid
H5Gget_info(gid)
H5Gclose(gid)
H5Gget_info_by_idx(fid,1)
H5Gget_info_by_name(fid,"foo")
H5Fclose(fid)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.