Scilab 6.1.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
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
- h5open — Open an HDF5 file
History
| Version | Description | 
| 5.5.0 | HDF5 module introduced. | 
| Report an issue | ||
| << h5flush | HDF5 files | h5group >> |