R/removeTile.R

Defines functions removeTile

Documented in removeTile

removeTile <-
function(tileFilename, libForMosaic) {
# 
# Remove a tile from the library
# 
# tileFilename :: the tile filename
# libForMosaic :: the library containing the data of the tiles in the parameter space 
#                 from which the tile should be removed
# 
	lib <- libForMosaic[-which(libForMosaic[,1]==tileFilename),]
	rownames(lib) <- NULL
	return(lib)
}

Try the RsimMosaic package in your browser

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

RsimMosaic documentation built on May 2, 2019, 7:29 a.m.