Nothing
###
### R routines for the R package mvmeta (c)
#
checkPD <-
function(mat, k, label="matrix") {
#
################################################################################
#
if(any(dim(mat)!=k)) stop(paste("wrong dimensions for '",label,"'",sep=""))
eig <- eigen(mat)
if(any(eig$values<0))
stop(paste("values for '",label,
"' do not produce a positive-definite matrix",sep=""))
#
mat
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.