jacobianSymb: Compute Jacobian of a function symbolically

View source: R/symbolics.R

jacobianSymbR Documentation

Compute Jacobian of a function symbolically

Description

Compute Jacobian of a function symbolically

Usage

jacobianSymb(f, variables = NULL)

Arguments

f

named vector of type character, the functions

variables

other variables, e.g. paramters, f depends on. If variables is given, f is derived with respect to variables instead of names(f)

Value

named vector of type character with the symbolic derivatives

Examples

jacobianSymb(c(A="A*B", B="A+B"))
jacobianSymb(c(x="A*B", y="A+B"), c("A", "B"))

cOde documentation built on March 18, 2022, 6:54 p.m.

Related to jacobianSymb in cOde...