Nothing
solve2 = function(H)
{
H.inv = try( solve(H), silent=TRUE )
if ( class(H.inv)[1] == "try-error" )
H.inv = try( Matrix::solve(Matrix::Matrix(H)), silent=TRUE )
if ( class(H.inv)[1] == "try-error" )
H.inv = try( chol2inv( chol(H) ), silent=TRUE )
if ( class(H.inv)[1] == "try-error" )
H.inv = matrix(NA, nrow(H), ncol(H))
return(H.inv)
}
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.