Nothing
#' @title Ac
#' @param X A sqaure matrix.
#' @param n The number of nodes.
#' @return z the result
#' @noRd
#' @keywords internal
Ac = function(X, n){
z = c(2 * X %*% matrix(1, n, 1), sum(diag(X)))
return(z)
}
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.