R/Zeros.R

Defines functions Zeros

Documented in Zeros

Zeros <- function(n) {
  if (length(n) == 1)
    res = matrix(0, n, n)
  else res = array(0, n)
  return(res)
}

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.