<< h5isRef h5is* tests h5isSpace >>

Scilab Help >> HDF5 files > h5is* tests > h5isSet

h5isSet

Check if the HDF5 object is a dataset

Syntax

b = h5isSet(obj)

Arguments

obj

a H5Object

b

a boolean

Description

Check if an HDF5 object is a dataset object.

Examples

// 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
h5isSet(a)

// Test against dataset 'x'
h5isSet(a.root.x)

// We close all
h5close(a)

See also

History

VersionDescription
5.5.0 HDF5 module introduced.

Report an issue
<< h5isRef h5is* tests h5isSpace >>