<< savenh5 | HDF5 | whosnh5 >> |
whonh5(filename) |
ce = whonh5(filename) |
whonh5(filename, var1, ..., varN) |
ce = whonh5(filename, var1, ..., varN) |
a string: .nh5 filename.
string: Names of variables to inspect.
cell of strings with variables names.
whonh5 lists variables in an valid .nh5 file.
A = ones(3, 4);
B = 'Nelson';
C = sparse(true);
D = sparse(3i);
savenh5([tempdir(), 'example_whonh5.nh5'], 'A', 'B', 'C', 'D')
whonh5([tempdir(), 'example_whonh5.nh5'])
ce = whonh5([tempdir(), 'example_whonh5.nh5'])
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET