Bit offset of first significant bit
offset = H5T.get_offset(type_id)
offset = H5T.get_offset(type_id)
returns
the offset of the first significant bit. type_id
is
a data type identifier.
fid = H5F.open('example.h5'); dset_id = H5D.open(fid,'/g3/float'); type_id = H5D.get_type(dset_id); offset = H5T.get_offset(type_id);