R/barredToActual.R

barredToActual <-
function(vectorL, boundaryVec, barred)
{
  size <- nrow(barred)
  dim <- ncol(barred)
  
  actual <- matrix(nrow = size, ncol = dim)
  
  for(i in 1:size)
  {
    for(j in 1:dim)
    {
      actual[i,j] <- boundaryVec[2*j - 1] +
        (boundaryVec[2*j] - boundaryVec[2*j - 1])/(vectorL[j] - 1)*(barred[i,j]-1)
    }
  }
  return(actual)
}

Try the MaskJointDensity package in your browser

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

MaskJointDensity documentation built on May 2, 2019, 8:28 a.m.