R/make_Q.R

Defines functions make_Q

make_Q <- function(D, E)
{
  Q <- rbind(c(0,     0,     0,     0),
             c(E[1], 0,     0,     D[1]),
             c(E[2], 0,     0,     D[2]),
             c(0,     E[2], E[1], 0))
  return(Q)
}
thauffe/simDES documentation built on June 29, 2023, 7:05 a.m.