#' Dot product
#'
#' @author Alexey Larionov
#' @param x scalar, vector or matrix
#' @param y scalar, vector or matrix
#' @return The dot product of x and y
#' @export dot_product
# Should really leave test here
dot_product <- function(x,y){
zz <- x %*% y # test
return(zz)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.