log_lik_arma: Log-likelihood function of continuous Gaussian ARMA model

Description Usage Arguments Examples

View source: R/log_lik_arma.R

Description

Direct estimation of the log-likelihood function of continuous Gaussian ARMA model

Usage

1
log_lik_arma(xxx, para, order)

Arguments

xxx
para
order

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## The function is currently defined as
function (xxx, para, order)
{
    m <- ncol(xxx)
    Ij <- numeric(m)
    for (i in 1:m) {
        Ij[i] <- exp(arma_loglikelihood(para, xxx[, i], ord = order))
    }
    return(Ij)
  }

hlennon/copulaIVTS documentation built on Dec. 20, 2021, 4:45 p.m.