Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5S_GET_SIMPLE_EXTENT_NDIMS

Determines the dimensionality of a dataspace

Procedure:

H5S_GET_SIMPLE_EXTENT_NDIMS ( space_id )

Signature:

int H5Sget_simple_extent_ndims(
            hid_t space_id
        )

Fortran90 Interface: h5sget_simple_extent_ndims_f
    
SUBROUTINE h5sget_simple_extent_ndims_f(space_id, rank, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: space_id   ! Dataspace identifier 
  INTEGER, INTENT(OUT) :: rank             ! Number of dimensions 
  INTEGER, INTENT(OUT) :: hdferr           ! Error code
                                           ! 0 on success and -1 on failure
END SUBROUTINE h5sget_simple_extent_ndims_f

Parameters:

hid_t space_id     IN: Identifier of the dataspace

Description:

H5S_GET_SIMPLE_EXTENT_NDIMS determines the dimensionality (or rank) of a dataspace.

Returns:

Returns the number of dimensions in the dataspace if successful; otherwise returns a negative value.

Example:

Include Bitbucket Server for Confluence: An error occured

Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Coming Soon!

History:

None

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