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 Dec. 1, 2022, 1:34 a.m.