Nothing
matrix_trace <- function(x) {
#' computes the trace of a matrix
#'
#' @param x a square matrix
#' @return returns the trace of the matrix x
#' @noRd
sum(diag(x))
}
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.