R/rectangle.R

#' rectangle
#' to be documented
#' @usage rectangle(d,h)
#' @param d a vector of distances
#' @param h a scalar or vector of bandiwdths (lenght(h)=1 or length(h)=length(d))
#' @noRd
#' @return a vector of weights.
rectangle<-function (d,h) {
  if(is(d,'matrix')) matrix(as.numeric(d<h),ncol=ncol(d)) else as.numeric(d<h)
}

Try the mgwrsar package in your browser

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

mgwrsar documentation built on May 29, 2024, 1:27 a.m.