Title: | hdf5 library as an R package |
---|---|
Description: | Provides C and C++ hdf5 libraries. |
Authors: | Mike Smith [ctb, cre] , The HDF Group [cph] |
Maintainer: | Mike Smith <[email protected]> |
License: | Artistic-2.0 |
Version: | 1.25.3 |
Built: | 2024-10-31 20:31:29 UTC |
Source: | https://github.com/grimbough/Rhdf5lib |
This function returns the version number of the HDF5 library that is distributed with this package.
getHdf5Version()
getHdf5Version()
Returns a character
vector of length 1 containing the version
number.
getHdf5Version()
getHdf5Version()
This function returns values for PKG_LIBS
variables for use in
Makevars files.
pkgconfig( opt = c("PKG_CXX_LIBS", "PKG_C_LIBS", "PKG_CXX_HL_LIBS", "PKG_C_HL_LIBS") )
pkgconfig( opt = c("PKG_CXX_LIBS", "PKG_C_LIBS", "PKG_CXX_HL_LIBS", "PKG_C_HL_LIBS") )
opt |
A scalar character from the list of available options;
default is |
NULL
; prints the corresponding value to stdout.
pkgconfig("PKG_C_LIBS") pkgconfig("PKG_CXX_LIBS") pkgconfig("PKG_C_HL_LIBS") pkgconfig("PKG_CXX_HL_LIBS")
pkgconfig("PKG_C_LIBS") pkgconfig("PKG_CXX_LIBS") pkgconfig("PKG_C_HL_LIBS") pkgconfig("PKG_CXX_HL_LIBS")
This package provides a compiled version of the HDF5 library bundled within the R package structure. It is primarily useful to developers of other R packages who want to make use of the capabilities of the HDF5 library directly in the C or C++ code of their own packages, rather than using a higher level interface.