R/is.3dpoints.R

is.3dpoints <- function (x) 
{
    is <- FALSE
    	if (is.array(x)) 
      	  if (length(dim(x)) == 2) 
            	if (dim(x)[2] >= 3) 
                	is <- TRUE
    is
}

Try the stpp package in your browser

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

stpp documentation built on May 2, 2019, 4:50 p.m.