H5Iget_type {rhdf5}R Documentation

Find the type of an object

Description

Possible types returned by the function are:

Usage

H5Iget_type(h5identifier)

Arguments

h5identifier

Object of class H5IdComponent.

Value

Returns a character vector of length 1 containing the HDF5 type for the supplied identifier.

Examples

h5file <- system.file("testfiles", "h5ex_t_array.h5", package="rhdf5")
fid <- H5Fopen(h5file)
gid <- H5Gopen(fid, "/")

## identify the HDF5 types for these identifiers
H5Iget_type(fid)
H5Iget_type(gid)

## tidy up
H5Gclose(gid)
H5Fclose(fid)


[Package rhdf5 version 2.37.4 Index]