Jump to ...
Summary
Description
Example
Switch language ...
C
C++
FORTRAN
JAVA
Reads a table's title
H5TBA_GET_TITLE ( loc_id, table_title )
herr_t H5TBAget_title(hid_t loc_id, char *table_title)
Replace this text with the Fortran function signature
loc_id
table_title
H5TBA_GET_TITLE returns the title of the table identified by loc_id in a buffer table_title.
Returns 0 on success and -1 on failure.
char tabletitle[256]; ... file_id = H5Fopen (FILENAME, H5F_ACC_RDWR, H5P_DEFAULT); dataset_id = H5Dopen (file_id, TABLE_NAME, H5P_DEFAULT); status = H5TBAget_title (dataset_id, tabletitle);
--- Last Modified: June 23, 2020 | 01:32 PM