R/check.bathy.R

Defines functions check.bathy

Documented in check.bathy

check.bathy = function(x){
	order(as.numeric(colnames(x))) -> xc
	order(as.numeric(rownames(x))) -> xr
	x[xr, xc] -> sorted.x
	return(sorted.x)
}
ericpante/marmap documentation built on April 4, 2023, 2:56 p.m.