Nothing
#' @name d
#' @title get list of derivatives
#' @aliases d.dual
#' @aliases d.numeric
#'
#' @usage d(x, varnames)
#' @param x a dual (or numeric) oject
#' @param varnames (optional) a vector or varnames to take derivatives along
#'
#' @description Get value, differential of a dual object, and the names of associated variables.
#'
#' @details If `varnames` is provided to the function `d`, a list of derivatives along the given variables will be sent back.
#' In general, it sends back the derivatives along all associated variables.
#'
#' @return A named list of derivatives.
#'
#' @examples x <- dual(c(3,2))
#' varnames(x^2)
#' x**2
#' value(x**2)
#' d(x**2)
#' d(x**2, "x1")
#' # you can use these methods with a numerical constant
#' value(1)
#' varnames(1)
#' d(1, "x1")
#'
#' @export
d <- function(x, varnames) UseMethod("d")
#' @exportS3Method d dual
d.dual <- function(x, varnames) {
if(missing(varnames)) return(unclass(x@d))
L <- list()
for(nn in varnames) {
L[[nn]] <- component(x@d, nn)
}
L
}
#' @exportS3Method d numeric
d.numeric <- function(x, varnames = character(0)) {
x[] <- 0
L <- rep(list(x), length.out = length(varnames))
names(L) <- varnames
L
}
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.