R/onevar.R

Defines functions onevar

Documented in onevar

### produces matrix indicating models with a constant and just one extra variable, 
### and a model with a constant only
### x should be a matrix
### the function is designed to simplify working with one-variable models in fDMA()

onevar <- function(x)
  {
    i <- ncol(x)
    m <- diag(1,i,i)
    m <- cbind(1,m)
    m <- rbind(0,m)
    m[1,1] <- 1
    return(m)
  }

Try the fDMA package in your browser

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

fDMA documentation built on July 26, 2023, 6:09 p.m.