h5write(filename, location, value)
| Parameter | Description |
|---|---|
| filename | a string: hdf5 filename. |
| location | a string: full path identifying a data set. |
| value | a value: supported types: double, uint64, uint32, uint16, uint8 single, int64, int32, int16, int8 or character array. |
h5write writes data to an entire data set, location, in the HDF5 file.
h5filename = [tempdir(), 'doc_h5write.h5'];
R = rand(3, 4)
h5write(h5filename,'/rand', R);
h5write(h5filename,'/str', 'Hello');
h5dump(h5filename)
| Version | Description |
|---|---|
| 1.0.0 | initial version |