Check if the HDF5 object is a type
b = h5isType(obj)
a H5Object
a boolean
Check if an HDF5 object is a type.
// Create a SOD file which an HDF5 one x = 1:10; save(TMPDIR + "/x.sod", "x"); // Open the file a = h5open(TMPDIR + "/x.sod", "r"); // Test h5isType(a) // Test against the type associated to dataset 'x' h5isType(a.root.x.type) // We close all h5close(a)