Nothing
#' Riemann Zeta Function
#'
#' Computes the Riemann zeta function \eqn{(\zeta(s))} for argument \eqn{(z)}.
#'
#' @param z Real number input
#' @return The value of the Riemann zeta function \eqn{(\zeta(z))}.
#' @export
#' @examples
#' # Riemann Zeta Function
#' zeta(2) # Should return pi^2 / 6
zeta <- function(z) {
.Call(`zeta_`, 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.