| lim {caracas} | R Documentation | 
Limit of a function
Description
Limit of a function
Usage
lim(f, var, val, dir = NULL, doit = TRUE)
Arguments
| f | Function to take limit of | 
| var | Variable to take limit for (either string or  | 
| val | Value for  | 
| dir | Direction from where  | 
| doit | Evaluate the limit immediately (or later with  | 
Examples
if (has_sympy()) {
  x <- symbol("x")
  lim(sin(x)/x, "x", 0)
  lim(1/x, "x", 0, dir = '+')
  lim(1/x, "x", 0, dir = '-')
}
[Package caracas version 2.1.1 Index]