String vectors in HDF5

16 visualizzazioni (ultimi 30 giorni)
Peter Felfer
Peter Felfer il 15 Lug 2020
Risposto: Deepak il 18 Ott 2024
Hi,
does anyone know if i can create a dataset in an HDF5 file from a string array (or char cell array) in Matlab?
Thanks heaps in advance,
Peter

Risposte (1)

Deepak
Deepak il 18 Ott 2024
Hi Peter,
As I understand it, you want to know how we can create and store data in an HDF5 file from a string array/ char cell array in MATLAB.
We can accomplish this using “h5create” and “h5write” functions in MATLAB. We specify the output file name, data types, and size of the file in “h5create” to create the output dataset file. Then we can call “h5write” function to write the string/char cell array data into the output HDF5 file. We can also read and display the output data using the “h5read” function in MATLAB.
Here is the sample MATLAB code for the same:
charCellArray = {'Hello', 'World', 'MATLAB', 'HDF5'};
h5create('mydata2.h5', '/dataset', size(charCellArray), 'Datatype', 'string');
h5write('mydata2.h5', '/dataset', charCellArray);
data = h5read('mydata2.h5', '/dataset');
disp(data);
Please find attached the documentation of functions used for reference:
I hope this helps in resolving the issue.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by