<< h5writeatt | HDF5 | loadnh5 >> |
tf = isnh5file(filename) |
[tf, version, header] = isnh5file(filename) |
a string: .nh5 filename.
a logical: true if it is a valid .nh5 file.
a string array: "-v1" or "" if it is undefined.
a string array: header of nh5 file (date created).
isnh5file checks if filename a valid .nh5 file.
A = ones(3, 4);
savemat([tempdir(), 'example_isnh5.mat'], 'A')
R = isnh5file([tempdir(), 'example_isnh5.mat'])
h5save([tempdir(), 'example_isnh5.nh5'], 'A')
[R, VER, HE] = isnh5file([tempdir(), 'example_isnh5.nh5'])
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET