Name of object
name = H5I.get_name(obj_id)
name = H5I.get_name(obj_id,'TextEncoding',encoding)
name = H5I.get_name(obj_id)
returns the
name of the object specified by obj_id
. If no
name is attached to the object, an empty character vector is returned.
name = H5I.get_name(obj_id,'TextEncoding',encoding)
additionally
specifies the text encoding to use to interpret the object name. Specify
encoding
as 'system'
(default) or
'UTF-8'
.
'system'
— Use the system default encoding to
interpret the object name.
'UTF-8'
— Use UTF-8
encoding to
interpret the object name.
Display the names of all the objects in the /g3
group
in the example file by alphabetical order.
idx_type = 'H5_INDEX_NAME'; order = 'H5_ITER_INC'; fid = H5F.open('example.h5'); gid = H5G.open(fid,'/g3'); info = H5G.get_info(gid); for j = 1:info.nlinks obj_id = H5O.open_by_idx(fid,'g3',idx_type,order,j-1,'H5P_DEFAULT'); name = H5I.get_name(obj_id); fprintf('Object %d: ''%s''.\n',j-1,name); H5O.close(obj_id); end H5G.close(gid); H5F.close(fid);