Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> HDF5 Management > 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

  • h5isFile — Check if the HDF5 object is a file
  • h5isGroup — Check if the HDF5 object is a group
  • h5isAttr — Check if the HDF5 object is an attribute
  • h5isSpace — Check if the HDF5 object is a dataspace
  • h5isType — Check if the HDF5 object is a type
  • h5isRef — Check if the HDF5 object is a reference object
  • h5isArray — Check if the HDF5 object is an array
  • h5isVlen — Check if the HDF5 object is a variable length array

History

VersionDescription
5.5.0 HDF5 module introduced.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:38 CEST 2016