R/CD_mA.R

Defines functions CD_mA

Documented in CD_mA

#' @export
CD_mA <- function(alpha, Beta, p) {
  # computing Cobb-Douglas demand structure matrix in a monetary economy
  nonnegative_Beta <- Beta
  nonnegative_Beta[Beta < 0] <- 0
  A <- CD_A(alpha, nonnegative_Beta, p)
  tmpA <- A

  Indx <- which(Beta < 0, arr.ind = T)
  for (k in 1:nrow(Indx)) {
    A[Indx[k, 1], Indx[k, 2]] <- t(p) %*% tmpA[, Indx[k, 2]] / (-Beta[Indx[k, 1], Indx[k, 2]])
  }
  A
}

Try the CGE package in your browser

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

CGE documentation built on July 8, 2020, 5:16 p.m.