<< isnh5file | HDF5 | savenh5 >> |
loadnh5(filename) |
st = loadnh5(filename) |
loadnh5(filename, var1, ..., varN) |
st = loadnh5(filename, var1, ..., varN) |
a string: .nh5 filename.
string: Names of variables to load into Nelson's workspace.
a structure with variables name as fieldnames.
loadnh5 loads data from .nh5 file to Nelson's workspace.
.nh5 file uses hdf5 file as container.
A = ones(3, 4);
B = 'hello for open mat users';
savenh5([tempdir(), 'example_h5load.nh5'], 'A', 'B')
clear;
st = loadnh5([tempdir(), 'example_h5load.nh5']);
who
st.A
st.B
clear
who
loadnh5([tempdir(), 'example_h5load.nh5']);
who
A
B
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET