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 > h5get

h5get

Get a named object

Syntax

nobj = h5get(obj, location [, isAttr])

Arguments

obj

a H5Object

location

a string giving the location

isAttr

a boolean to indicate that an attribute must be got

nobj

a H5Object

Description

Get the object with the given location under obj. If isAttr is %T, an H5 object is returned (if it exists), by default isAttr is %F.

Examples

x = ["Hello" "World"; "Salut" "Monde"];
save(TMPDIR + "/x.sod", "x"); // SOD files are HDF5 ones

// Open the created file
a = h5open(TMPDIR + "/x.sod");

// Get the root object, this equivalent to a.root or a("/")
r = h5get(a, "/")

// Get the dataset "x"
x = h5get(a, "/x") // or h5get(a.root, "x")
x.data

// Get an inexisting dataset
y = h5get(a.root, "blahblah")

// Get an attribute
attr = h5get(a.root, "SCILAB_scilab_version", %t)
attr.data

// We close all
h5close(a)

See Also

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