changes.mady.by.user Mike McGreevy
Saved on Dec 04, 2017
changes.mady.by.user Barbara Jones
Saved on Apr 25, 2019
Closes an object in an HDF5 file
H5O_CLOSE(object_id)
<pre><code class="language-c">herr_t H5Oclose( hid_t object_id )</code></pre>
<pre><code class="language-fortran"> SUBROUTINE h5oclose_f(object_id, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: object_id INTEGER , INTENT(OUT) :: hdferr</code></pre>
object_id
H5Oclose
H5O_CLOSE closes the group, dataset, or named datatype specified by object_id.
This function is the companion to H5O_OPEN
H5Oopen
, and has the same effect as calling
H5Gclose
H5Dclose
H5Tclose
H5G_CLOSE, H5D_CLOSE, or H5T_CLOSE.
H5O_CLOSE is not used to close a dataspace, attribute, property list, or file.
Returns a non-negative value if successful; otherwise returns a negative value.
Coming Soon!