|
Contents | Previous | Next | Subchapters |
| Syntax |
file, object parent, object name)
|
| See Also: | h5write , read , bread |
O-Matrix supports reading, writing, and creating HDF5 files. See
the NCSA
HDF 5
site for more information about HDF5, and a description of this file
format.
test.h5 that contains a dataset "vector",
which is a three-element dataset that contains the value 1, and
you enter
h5read("test.h5", "/", "vector")
O-Matrix will respond
{
1
1
1
}
If the dataset "vector", contains a character attribute, "description", whose
value is "My Data", and you enter
h5read("test.h5","/vector","description")
O-Matrix will respond
My Data