Predefined Mathematical Functions



The pre-defined mathematical functions in R are

Trigonometric Functions

cos(x)
sin(x)
tan(x)
acos(x)
asin(x)
atan(x)
atan2(y, x)

cosh(x)
sinh(x)
tanh(x)
acosh(x)
asinh(x)
atanh(x)


Original Documentation : Trig , Hyperbolic

Logarithms and Exponentials

log(x, base = exp(1))
logb(x, base = exp(1))
log10(x)
log2(x)
exp(x)
expm1(x)
log1p(x)

Original Documentation : Log

UCLA Mathematics Department ©2000