#' Product by element
#'
#' @author Alexey Larionov
#' @param x scalar, vector or matrix
#' @param y scalar, vector or matrix
#' @return The element-wise product of x and y
#' @export product_by_element
product_by_element <- function(x,y){
z <- x * y # Test
return(z)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.