R/DistObs.R

Defines functions DistObs

Documented in DistObs

DistObs <-
function(posx,posy,posz=NULL, info=FALSE, PA=FALSE,procName=c('X','Y','Z'),...)
{
	nposx<-length(posx)

	pTri<-uniongentri(posx=posx,posy=posy,posz=posz,
			info=info, PA=PA,procName=procName,...)
	DistTri<-calcdist(coorx=pTri$X,coory=pTri$Y,coorz=pTri$Z, nposx=nposx)

	names(DistTri)<-round(posx,2)
	return(DistTri)
}

Try the IndTestPP package in your browser

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

IndTestPP documentation built on Aug. 29, 2020, 1:06 a.m.