Check if the HDF5 object is a file
b = h5isFile(obj)
a H5Object
a boolean
Check if an HDF5 object is a file object.
// 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 h5isFile(a) // Test against root h5isFile(a.root) // We close all h5close(a)