Mostrar comentarios más antiguos
Can Matlab read/write HDF5 v1.10 files? If not, are there plans to add that support? I'm particularly interested in SWMR (Single Write Multiple Read) functionality, but I have not found any mention of that in the Matlab docs.
Respuesta aceptada
Más respuestas (2)
Alexander Neumann
el 29 de Jun. de 2021
MATLAB 2021b (Prerelease)
>> [majnum,minnum,relnum] = H5.get_libversion()
majnum =
1
minnum =
10
relnum =
7
so it has finally been updated
Jarom Nelson
el 18 de Sept. de 2019
Editada: Jarom Nelson
el 18 de Sept. de 2019
0 votos
h5repack and h5format_convert are available with the HDF5 1.10.x software to update a file to be compatible with HDF5 1.8.x.
From the SWMR user guide:https://support.hdfgroup.org/HDF5/docNewFeatures/SWMR/HDF5_SWMR_Users_Guide.pdf
One can use the h5repack or h5format_convert tools to convert an HDF5 file created by the HDF5 Library version 1.10.0 to be accessible by the HDF5 Library version 1.8. The h5repack tool rewrites the whole file; h5format_convert modifies the file “in place” by rewriting only metadata information according to the 1.8 format while leaving raw data intact.
Categorías
Más información sobre HDF5 en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!