You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following list of functions can be used to request the derivative, gradient, Jacobian or Hessian without the function value.
56
+
The following list of functions can be used to request the derivative, second derivative, gradient, Jacobian or Hessian without the function value.
57
57
58
58
```@docs
59
59
AbstractDifferentiation.derivative
60
60
AbstractDifferentiation.gradient
61
61
AbstractDifferentiation.jacobian
62
+
AbstractDifferentiation.second_derivative
62
63
AbstractDifferentiation.hessian
63
64
```
64
65
65
66
## Value and derivatives
66
67
67
-
The following list of functions can be used to request the function value along with its derivative, gradient, Jacobian or Hessian. You can also request the function value, its gradient and Hessian for single-input functions.
68
+
The following list of functions can be used to request the function value along with its derivative, second derivative, gradient, Jacobian or Hessian. You can also request the function value, its gradient and Hessian for single-input functions.
Return the tuple `(v, d, d2)` of the function value `v = f(x)` and the first and second derivatives `d = AD.derivative(ab, f, x)` and `d2 = AD.second_derivative(ab, f, x)`.
0 commit comments