limit {elliptic} | R Documentation |
Limit the magnitude of elements of a vector
Description
Deals appropriately with objects with a few very large elements
Usage
limit(x, upper=quantile(Re(x),0.99,na.rm=TRUE),
lower=quantile(Re(x),0.01,na.rm=TRUE),
na = FALSE)
Arguments
x |
Vector of real or complex values |
upper |
Upper limit |
lower |
Lower limit |
na |
Boolean, with default |
Details
If x
is complex, low
is ignored and the function returns
x
, after executing x[abs(x)>high] <- NA
.
Author(s)
Robin K. S. Hankin
Examples
x <- c(rep(1,5),300, -200)
limit(x,100)
limit(x,upper=200,lower= -400)
limit(x,upper=200,lower= -400,na=TRUE)
[Package elliptic version 1.4-0 Index]