hyperbolic {float} | R Documentation |
Hyperbolic functions
Description
Hyperbolic functions.
Usage
## S4 method for signature 'float32'
sinh(x)
## S4 method for signature 'float32'
cosh(x)
## S4 method for signature 'float32'
tanh(x)
## S4 method for signature 'float32'
asinh(x)
## S4 method for signature 'float32'
acosh(x)
## S4 method for signature 'float32'
atanh(x)
Arguments
x |
A float vector/matrix. |
Value
A float vector/matrix of the same dimensions as the input.
Examples
## Not run:
library(float)
x = flrunif(10)
sinh(x)
## End(Not run)
[Package float version 0.3-2 Index]