1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/R6Classes_H5T.R
\docType{class}
\name{H5T_FLOAT-class}
\alias{H5T_FLOAT-class}
\alias{H5T_FLOAT}
\title{Class for HDF5 floating point datatypes.}
\value{
Object of class \code{\link[=H5T_FLOAT]{H5T_FLOAT}}.
}
\description{
Inherits from class \code{\link[=H5T]{H5T}}. Users should not create float types with this class, but instead
use e.g. \code{h5types$H5T_NATIVE_DOUBLE}. Using the functions of this class, many aspects of the representation of the
floating point number can then be manipulated.
}
\section{Methods}{
\describe{
\item{\code{set_fields(spos, epos, esize, mpos, msize)}}{
This function implements the HDF5-API function H5Tset_fields.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_SET_FIELDS} for details.}
\item{\code{get_fields()}}{
This function implements the HDF5-API function H5Tget_fields.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_GET_FIELDS} for details.}
\item{\code{set_ebias(ebias)}}{
This function implements the HDF5-API function H5Tset_ebias.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_SET_EBIAS} for details.}
\item{\code{get_ebias()}}{
This function implements the HDF5-API function H5Tget_ebias.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_GET_EBIAS} for details.}
\item{\code{set_norm(norm)}}{
This function implements the HDF5-API function H5Tset_norm.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_SET_NORM} for details.}
\item{\code{get_norm()}}{
This function implements the HDF5-API function H5Tget_norm.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_GET_NORM} for details.}
\item{\code{set_inpad(inpad)}}{
This function implements the HDF5-API function H5Tset_inpad.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_SET_INPAD} for details.}
\item{\code{get_inpad()}}{
This function implements the HDF5-API function H5Tget_inpad.
Please see the documentation at \url{https://portal.hdfgroup.org/display/HDF5/H5T_GET_INPAD} for details.}
\item{\code{describe()}}{
Print a detailed description of the datatype; this is experimental}
}}
\seealso{
\code{\link[=H5T]{H5T}}
}
\author{
Holger Hoefling
}
|