Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5LD_GET_DSET_DIMS

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_idIN: 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:

 See the example code in H5LD_GET_DSET_ELMTS for usage of this routine.

History:
Release    Change
1.10.0C function introduced with this release.

--- Last Modified: August 14, 2019 | 10:51 AM