R/InferenceA.R

Defines functions InferenceA

Documented in InferenceA

InferenceA <-
function(listA,niter,burnin){
Amean=matrix(0,nrow=4,ncol=4)

for(i in burnin:niter){
  temp=listA[[i]]
  Amean=Amean+temp
}
Amean=Amean/(niter-burnin)
return(Amean)
}

Try the iBATCGH package in your browser

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

iBATCGH documentation built on Oct. 23, 2020, 6:34 p.m.