The H5T_ARRAY_CREATE function creates an array datatype object.
Result = H5T_ARRAY_CREATE(Datatype_id, Dimensions)
The Result gives the identifier of the new datatype. The datatype identifier returned from this function should be released with H5T_CLOSE.
An integer giving the datatype identifier of the datatype of each element in the resulting array.
An integer array giving the size of each array dimension. The number of elements in Dimensions defines the number of dimensions in the resulting array datatype.
Note: The Dimensions argument should be specified in IDL column-major order. Internally, the dimensions will be reversed to match HDF5/C row-major order.
None
See the example under H5F_CREATE.
6.2 |
Introduced |