R/addBackTile.R

Defines functions addBackTile

Documented in addBackTile

addBackTile <-
function(tileFilename, libForMosaic, libForMosaicFull) {
# 
# Add the tile back to the library
# 
# tileFilename :: the tile filename
# libForMosaic :: the partial library containing the data of the tiles in the parameter space
# libForMosaicFull :: the complete library containing the data of the tiles in the parameter space
# 
	lib <- rbind(libForMosaic, libForMosaicFull[which(libForMosaicFull[,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.