#' Sum a matrix
#'
#' This function sums up one sumeric matrix
#'
#' @param matrix The matrix to be summed
#'
#' @return Integer
#' @export
#'
#' @example
sum_matrix <- function(matrix){
sum <- sum(matrix)
return(sum)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.