Retrieves the current dimension sizes of a dataset
Procedure:
H5LD_GET_DSET_DIMS (dset_id, cur_dims)
Signature:
herr_t H5LDget_dset_dims( hid_t dset_id, hsize_t *cur_dims )
Parameters:
hid_t
dset_id | IN: The dataset identifier |
hsize_t *cur_dims | OUT: The current dimension sizes of the dataset |
Description:
H5LD_GET_DSET_DIMS retrieves the current dimension sizes for the dataset dset_id
through the parameter cur_dims
. It will return failure if cur_dims
is NULL.
See Also:
Returns:
If successful, returns zero. Otherwise, returns a negative value.
Example:
History:
Release | Change |
---|
1.10.0 | C function introduced with this release. |
--- Last Modified: August 14, 2019 | 10:51 AM