"convGausExp" <-
function(k, x, mu, tau) {
m <- rep(0, length(x) * length(k))
m <- as.matrix(.C("r_calcCirf",
m = as.double(m), as.double(k),
as.double(x), as.double(tau), as.double(mu),
as.integer(length(k)),
as.integer(length(x)), PACKAGE = "TIMP"
)$m)
dim(m) <- c(length(x), length(k))
m
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.