Check if the HDF5 object is a variable length array
Syntax
b = h5isVlen(obj)
Arguments
obj
a H5Object
b
a boolean
Description
Check if an HDF5 object is a variable length array.
Examples
// Create a SOD file which an HDF5 onex=(1:10)+%i*(20:29);save(TMPDIR+"/x.sod","x");// Open the filea=h5open(TMPDIR+"/x.sod","r");// Testh5isVlen(a)// We close allh5close(a)