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 MultBiplotR package in your browser

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

MultBiplotR documentation built on Nov. 21, 2023, 5:08 p.m.