Reads a dataset from disk.
Procedure:
H5LT_READ_DATASET_INT(loc_id, dset_name, buffer)
Signature:
herr_t H5LTread_dataset_int ( hid_t loc_id, const char *dset_name, int *buffer )
subroutine h5ltread_dataset_int_f(loc_id, dset_name, buf, &
dims, errcode)
implicit none
integer(HID_T), intent(IN) :: loc_id ! file or group identifier
character(LEN=*), intent(IN) :: dset_name ! name of the dataset
integer(HSIZE_T), dimension(*), intent(IN) :: dims
! size of the buffer buf
integer, intent(INOUT), dimension(*) :: buf ! data buffer
integer :: errcode ! error code
end subroutine h5ltread_dataset_int_f
Parameters:
hid_t loc_id | IN: Identifier of the file or group to read the dataset within. |
const char *dset_name | IN: The name of the dataset to read. |
int * buffer | OUT: Buffer with data. |
Description:
H5LTread_dataset_int
reads a dataset named dset_name
attached to the object specified by the identifier loc_id
. The HDF5 datatype is H5T_NATIVE_INT.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
Release | Change |
1.8.7 | Fortran subroutine modified in this release to accomodate arrays with more than three dimensions. |
--- Last Modified: December 04, 2017 | 07:14 AM