H5T.get_array_ndims

Rank of array data type

Syntax

output = H5T.get_array_ndims(type_id)

Description

output = H5T.get_array_ndims(type_id) returns the rank, the number of dimensions, of an array data type object.

Examples

fid = H5F.open('example.h5');
dset_id = H5D.open(fid,'/g3/array2D');
type_id = H5D.get_type(dset_id);
ndims = H5T.get_array_ndims(type_id);