#Support eqauations
#'@title Delta
#'@param xf The final value
#'@param xi The initial value
#'@description The function subtracts the 2nd value from the 1st value
#'@return The difference of the final value and the initial value
#'@export
delta <- function(xi, xf){
return(xf - xi)
}
#'@title Add
#'@param b The final value
#'@param a The initial value
#'@description The function adds the inital and final value
#'@return The addition of the final value and the initial value
#'@export
Add <- function(a, b){
return(a + b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.