R/inbox.R

Defines functions inbox

Documented in inbox

inbox <- function(x, y, xmin, xmax, ymin, ymax) {
  result = FALSE
  if ((x >= xmin) & (x <= xmax) & (y >= ymin) & (y <= ymax))
    result = TRUE
  return(result)
}

Try the PERMANOVA package in your browser

Any scripts or data that you put into this service are public.

PERMANOVA documentation built on Sept. 6, 2021, 5:07 p.m.