Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5LT_READ_DATASET_CHAR

Reads a dataset from disk.

Procedure:

H5LT_READ_DATASET_CHAR(loc_id, dset_name, buffer)

Signature:

herr_t H5LTread_dataset_char ( hid_t loc_id, const char *dset_name, char *buffer )

Parameters:
hid_t loc_idIN: Identifier of the file or group to read the dataset within.
const char *dset_nameIN: The name of the dataset to read.
char * bufferOUT: Buffer with data.

Description:

H5LTread_dataset_char reads a dataset named dset_name attached to the object specified by the identifier loc_id. The HDF5 datatype is H5T_NATIVE_CHAR.

Returns:

Returns a non-negative value if successful; otherwise returns a negative value.

Example:

Coming Soon!

--- Last Modified: December 04, 2017 | 07:13 AM

 

hid_t loc_idIN: Identifier of the file or group to read the dataset within.const char *dset_nameIN: The name of the dataset to read.char * bufferOUT: Buffer with data.