Functions that evaulate the (penalized) (fused) likelihood.
NLL(S, P)
PNLL(S, P, T, lambda)
NLL.fused(Slist, Plist, ns)
PNLL.fused(Slist, Plist, ns, Tlist, lambda)
A (list of) positive semi definite sample covariance matrices.
A (list of) positive definite precision matrices.
A (list of) positive definite target matrices.
A numeric
of sample sizes.
A numeric
penalty parameter. For the .fused
functions, this is a penalty matrix
.
A single number.
# NOT RUN {
ns <- c(4,5)
Slist <- createS(n = ns, p = 5)
Plist <- list(diag(5), diag(2,5))
Tlist <- list(diag(5), diag(5))
NLL(Slist[[1]], Plist[[1]])
PNLL(Slist[[1]], Plist[[1]], Tlist[[1]], lambda = 1)
NLL.fused(Slist, Plist, ns)
PNLL.fused(Slist, Plist, ns, Tlist, lambda = diag(2))
# }
Run the code above in your browser using DataLab