Nothing
#' Calculates the Frobenius inner product between to square matrices
#'
#' @param A a square matrix
#' @param B a square matrix
#'
#' @returns the Frobenius inner product
#' @keywords internal
frob_scalar_prod = function(A,B){
sum(diag(t(A)%*%B))
}
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.