H5Tget_array_dims1
(
hid_t adtype_id
,
hsize_t dims[]
,
int perm[]
)
H5Tget_array_dims
and
deprecated in favor of the function
H5Tget_array_dims2
or the new macro
H5Tget_array_dims
.
H5Tget_array_dims1
returns the sizes of the dimensions
and the dimension permutations of the specified array datatype object.
The sizes of the dimensions are returned in the array dims
.
The parameter perm
is not used.
hid_t adtype_id |
IN: Datatype identifier of array object. |
hsize_t dims[] |
OUT: Sizes of array dimensions. |
int perm[] |
OUT: Dimension permutations.
(This parameter is not used.) |
SUBROUTINE h5tget_array_dims_f(type_id, dims, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Identifier of the array datatype INTEGER(HSIZE_T), DIMENSION(*), INTENT(OUT) :: dims ! Buffer to store array datatype INTEGER, INTENT(OUT) :: hdferr ! Error code END SUBROUTINE h5tget_array_dims_f
Release | C |
1.4.0 | Function introduced in this release. |
1.8.0 |
The function H5Tget_array_dims renamed to
H5Tget_array_dims1
and deprecated in this release. |