R/inverse.important.R

inverse.important <- function(io, i, j, delta.aij){
  if(class(io) != "InputOutput") stop('io should be of "InputOutput" class. See ?as.inputoutput')
  if(length(i) != 1) stop("i (row) should only be one number")
  if(length(j) != 1) stop("j (column) should only be one number")
  L <- io$L
  delta.L <- delta.aij/(1-L[j,i]*delta.aij) * f.influence(deparse(substitute(io)), i, j)
  delta.L
}
jjpwade/ioanalysis documentation built on May 6, 2019, 6:57 p.m.