H5Tcopy <- function( dtype_id = h5default(type="H5T")) {
if (is.numeric(dtype_id)) {
dtype_id <- as.integer(dtype_id)
} else {
dtype_id <- h5checkConstants( "H5T", dtype_id )
}
invisible(.Call("_H5Tcopy", dtype_id, PACKAGE='rhdf5'))
}
H5Tset_size <- function( dtype_id = h5default(type="H5T"), size) {
# string constant type_id do not make sense, because they are not allowed to be changed
dtype_id <- as.integer(dtype_id)
size <- as.integer(size)
invisible(.Call("_H5Tset_size", dtype_id, size, PACKAGE='rhdf5'))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.