Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5S_DECODE

Decodes a binary object description of data space and returns a new object handle

Procedure:

H5S_DECODE ( buf )

Signature:

hid_t H5Sdecode
      (unsigned char *buf)

Parameters:

unsigned char *buf     IN: Buffer for the data space object to be decoded

Description:

Given an object description of data space in binary in a buffer, H5S_DECODE reconstructs the HDF5 data type object and returns a new object handle for it. The binary description of the object is encoded by H5S_ENCODE. User is responsible for passing in the right buffer. The types of data space we address in this function are null, scalar, and simple space. For simple data space, the information of selection, for example, hyperslab selection, is also encoded and decoded. Complex data space has not been implemented in the library.

Returns:

Returns an object ID(non-negative) if successful; otherwise returns a negative value.

Example:

Coming Soon!

History:

None

--- Last Modified: May 03, 2019 | 02:41 PM