Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5S_GET_SIMPLE_EXTENT_TYPE

Determines the current class of a dataspace

Procedure:

H5S_GET_SIMPLE_EXTENT_TYPE ( space_id )

Signature:

H5S_class_t H5Sget_simple_extent_type(
            hid_t space_id
        )

Fortran90 Interface: h5sget_simple_extent_type_f
    
SUBROUTINE h5sget_simple_extent_type_f(space_id, classtype, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: space_id ! Dataspace identifier 
  INTEGER, INTENT(OUT) :: classtype      ! Class type 
                                         ! Possible values are: 
                                         !    H5S_NO_CLASS_F 
                                         !    H5S_SCALAR_F 
                                         !    H5S_SIMPLE_F 
                                         !    H5S_NULL_F 
  INTEGER, INTENT(OUT) :: hdferr         ! Error code
                                         ! 0 on success and -1 on failure
END SUBROUTINE h5sget_simple_extent_type_f

Parameters:

hid_t space_id     IN: Dataspace identifier

Description:

H5S_GET_SIMPLE_EXTENT_TYPE determines the current class of a dataspace space_id.

Returns:

Returns a dataspace class name if successful; otherwise H5S_NO_CLASS (-1).

Example:

Coming Soon!

History:

None

--- Last Modified: May 03, 2019 | 02:05 PM