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 June 28, 2024, 9:11 a.m.