Retrieves the exponent bias of a floating-point type
Procedure:
Signature:
size_t H5Tget_ebias( hid_t dtype_id )
SUBROUTINE h5tget_ebias_f(type_id, ebias, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier
INTEGER(SIZE_T), INTENT(OUT) :: ebias ! Datatype exponent bias
! of a floating-point type
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5tget_ebias_f
Parameters:
hid_t dtype_id | IN: Identifier of datatype to query |
Description:
H5T_GET_EBIAS retrieves the exponent bias of a floating-point type.
Returns:
Returns the bias if successful; otherwise 0.
Example:
--- Last Modified: May 16, 2019 | 09:27 AM