trig {float} | R Documentation |
Basic trig functions.
## S4 method for signature 'float32'
sin(x)
## S4 method for signature 'float32'
cos(x)
## S4 method for signature 'float32'
tan(x)
## S4 method for signature 'float32'
asin(x)
## S4 method for signature 'float32'
acos(x)
## S4 method for signature 'float32'
atan(x)
x |
A float vector/matrix. |
A float vector/matrix of the same dimensions as the input.
## Not run:
library(float)
x = flrunif(10)
sin(x)
## End(Not run)